diff options
Diffstat (limited to 'community/ming/PKGBUILD')
-rw-r--r-- | community/ming/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/ming/PKGBUILD b/community/ming/PKGBUILD new file mode 100644 index 000000000..9cffc5ea9 --- /dev/null +++ b/community/ming/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Connor Behan <connor.behan@gmail.com> +# Contributor: mar77i <mysatyre at gmail dot com> + +pkgname=ming +pkgver=0.4.4 +pkgrel=1 +pkgdesc="SWF output library" +arch=('i686' 'x86_64') +url="http://www.libming.net/" +license=('GPL' 'LGPL') +depends=('freetype2' 'libpng' 'flex') +makedepends=('bison' 'pkg-config' 'python2') +options=('!libtool' '!emptydirs') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('9e780f93670eaf68b1eefa6cdfc1d1e2') + +build() { + cd "$srcdir"/$pkgname-$pkgver/ + sed -i -e 's/ifndef HAVE_VASPRINTF/ifdef HAVE_VASPRINTF/' util/decompile.c util/makeswf.c + LDFLAGS="${LDFLAGS/ -Wl,--as-needed/}" + PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver/ + make DESTDIR="$pkgdir" install +} |