mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
28 lines
920 B
Bash
28 lines
920 B
Bash
# $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
|
|
}
|