summaryrefslogtreecommitdiff
path: root/community/unshield/PKGBUILD
blob: e1f794569a029e2238912566db6e4fd44b3f8323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $Id: PKGBUILD 101042 2013-11-15 12:43:16Z spupykin $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>

pkgname=unshield
pkgver=0.6
pkgrel=4
pkgdesc="Extracts CAB files from InstallShield installers"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/synce/files/"
license=('custom')
depends=('zlib')
source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz
        libunshield.c.patch)
md5sums=('31a829192a255160d1f71cda4c865c9c'
         'aa731ca6fd7c7dfb03f8b07e232b37d3')

prepare() {
  cd ${srcdir}/${pkgname}-${pkgver}
  sed -i 's|CFLAGS="-ansi -Wall -Werror"|CFLAGS="-ansi -Wall"|g' configure
}

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  # See http://www.mail-archive.com/synce-devel@lists.sourceforge.net/msg01796.html
  patch -Np0 -i "${srcdir}/libunshield.c.patch"
  ./configure --prefix=/usr
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make DESTDIR=${pkgdir} install
  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
}