updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / swfmill / PKGBUILD
blob75a1939707bf13c3e634f7ec97447a6b1b3d6b32
1 # Maintainer: Arkham <arkham at archlinux dot us>
2 # Contributor: Arkham <arkham at archlinux dot us>
4 pkgname=swfmill
5 pkgver=0.3.0
6 pkgrel=1
7 pkgdesc="xml2swf and swf2xml processor with import functionalities"
8 arch=('i686' 'x86_64')
9 url="http://swfmill.org"
10 license=('GPL')
11 depends=('libxslt' 'freetype2' 'libpng')
12 options=(!libtool)
13 source=(http://swfmill.org/releases/$pkgname-$pkgver.tar.gz)
14 md5sums=('b7850211cf683aa7a1c62324b56e3216')
16 build() {
17     cd $srcdir/$pkgname-$pkgver
19     # Patch some gcc problems
20     sed -i -e 's/!png_check_sig(sig, 8)/png_sig_cmp(sig, 0, 8)/' src/swft/readpng.c
22     # Configure, make and install
23     ./configure --prefix=/usr
24     make || return 1
25     make DESTDIR=$pkgdir install || return 1