summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/libmpeg2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/libmpeg2/PKGBUILD')
-rw-r--r--abs/core-testing/libmpeg2/PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/abs/core-testing/libmpeg2/PKGBUILD b/abs/core-testing/libmpeg2/PKGBUILD
deleted file mode 100644
index 672e098..0000000
--- a/abs/core-testing/libmpeg2/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $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
-}