diff options
author | Cecil <knoppmyth@gmail.com> | 2011-08-03 23:14:05 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2011-08-03 23:14:05 (GMT) |
commit | 998faf16b1b62493b39aa13b3cb53dfac266ef4c (patch) | |
tree | e39f222ebd2e5ca78211045d1d12ccc02f8c5516 /abs/extra/community/gpac/PKGBUILD | |
parent | 085e16d501ac72951e7455385cc8af7e90fa02cb (diff) | |
parent | a9c47f145393b31d7f656b14a2952ab6fc6fec58 (diff) | |
download | linhes_pkgbuild-998faf16b1b62493b39aa13b3cb53dfac266ef4c.zip linhes_pkgbuild-998faf16b1b62493b39aa13b3cb53dfac266ef4c.tar.gz linhes_pkgbuild-998faf16b1b62493b39aa13b3cb53dfac266ef4c.tar.bz2 |
Merge branch 'testing' of ssh://cesman@linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/community/gpac/PKGBUILD')
-rw-r--r-- | abs/extra/community/gpac/PKGBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/abs/extra/community/gpac/PKGBUILD b/abs/extra/community/gpac/PKGBUILD new file mode 100644 index 0000000..69717e2 --- /dev/null +++ b/abs/extra/community/gpac/PKGBUILD @@ -0,0 +1,44 @@ +# Maintainer: Brad Fanella <bradfanella@archlinux.us +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: niQo +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=gpac +pkgver=0.4.5 +pkgrel=7 +pkgdesc="A multimedia framework based on the MPEG-4 Systems standard" +arch=('i686' 'x86_64') +url="http://gpac.sourceforge.net" +depends=('libxml2' 'wxgtk' 'alsa-lib' 'sdl' 'js' 'libmad' \ + 'faad2' 'xvidcore' 'ffmpeg' 'freeglut') +license=('LGPL') +options=('!makeflags') # Multiple build jobs aren't handled correctly +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz + libpng14-infopp-null.patch) +md5sums=('755e8c438a48ebdb13525dd491f5b0d1' + '14d6483c9eb84434aea68596f243e0ca') + +build() { + cd ${srcdir}/${pkgname} + chmod +x configure + sed -i 's|--warn-common||' configure + sed -i 's#osmozilla##g' applications/Makefile + sed -i 's#"$(prefix)#"$(DESTDIR)$(prefix)#' applications/osmo4_wx/Makefile + sed -i 's#ldconfig || true##g' Makefile + + #FS#14506 + sed -i 's#lib64#lib#g' configure + patch -Np1 -i ${srcdir}/libpng14-infopp-null.patch + + # Was getting "symbol lookup error: /usr/lib/gpac/gm_x11_out.so: undefined + # symbol: XvQueryExtension" with our LDFLAGS :\ + unset LDFLAGS + + ./configure --prefix=/usr --mandir=/usr/share/man --use-js=no + make +} + +package() { + cd ${srcdir}/${pkgname} + make DESTDIR=${pkgdir} install install-lib +} |