diff options
Diffstat (limited to 'abs/extra-testing/libmpeg2/PKGBUILD')
-rw-r--r-- | abs/extra-testing/libmpeg2/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/abs/extra-testing/libmpeg2/PKGBUILD b/abs/extra-testing/libmpeg2/PKGBUILD new file mode 100644 index 0000000..672e098 --- /dev/null +++ b/abs/extra-testing/libmpeg2/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 8677 2008-08-15 11:05:35Z andyrtr $ +# Contributor: Sarah Hay <sarah@archlinux.org> +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=libmpeg2 +pkgver=0.5.1 +pkgrel=1 +pkgdesc="libmpeg2 is a library for decoding MPEG-1 and MPEG-2 video streams." +arch=('i686' 'x86_64') +url="http://libmpeg2.sourceforge.net/" +depends=('glibc') +optdepends=('sdl: requiered for mpeg2dec' + 'libsm: requiered for mpeg2dec' + 'libxv: requiered for mpeg2dec') +source=(http://libmpeg2.sourceforge.net/files/${pkgname}-${pkgver}.tar.gz) +license=('GPL2') +options=(!libtool) +provides=('mpeg2dec') +md5sums=('0f92c7454e58379b4a5a378485bbd8ef') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --enable-shared --disable-static || return 1 + make OPT_CFLAGS="${CFLAGS}" \ + MPEG2DEC_CFLAGS="${CFLAGS}" \ + LIBMPEG2_CFLAGS="" || return 1 + make DESTDIR=${pkgdir} install || return 1 +} |