From 5456ff1a02d967e2fecf52c6f578bebfd02782f1 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Mon, 14 Aug 2017 12:25:36 +0000 Subject: [PATCH] removed community/unshield --- community/unshield/PKGBUILD | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 community/unshield/PKGBUILD diff --git a/community/unshield/PKGBUILD b/community/unshield/PKGBUILD deleted file mode 100644 index 61add662e..000000000 --- a/community/unshield/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Giovanni Scafora - -# ALARM: Kevin Mihelich -# - build v7 with -fPIC - -pkgname=unshield -pkgver=1.3 -pkgrel=2 -pkgdesc="Extracts CAB files from InstallShield installers" -arch=('i686' 'x86_64') -url="https://github.com/twogood/unshield" -license=('custom') -depends=('zlib' 'openssl') -makedepends=('cmake') -source=("$pkgname-$pkgver.tar.gz::https://github.com/twogood/unshield/archive/$pkgver.tar.gz") -md5sums=('13b716e0a3f45fe74ca24c6aaf4e5bb0') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - - [[ $CARCH == "armv7h" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC" - - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - . - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE -}