mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
668 B
Bash
23 lines
668 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=unshield
|
|
pkgver=0.6
|
|
pkgrel=1
|
|
pkgdesc="Extracts CAB files from InstallShield installers"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/synce/files/"
|
|
license=('custom')
|
|
depends=('zlib')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('31a829192a255160d1f71cda4c865c9c')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
|
|
}
|
|
|