20 lines
524 B
Plaintext
20 lines
524 B
Plaintext
|
# Description: MPEG1/MPEG2 decoder (includes libmpeg2)
|
||
|
# URL: http://libmpeg2.sourceforge.net/
|
||
|
# Packager: acrux, acrux at linuxmail dot org
|
||
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||
|
# Depends on: libsdl, xorg-libxv, xorg-libsm
|
||
|
|
||
|
name=libmpeg2
|
||
|
version=0.5.1
|
||
|
release=1
|
||
|
source=(http://$name.sourceforge.net/files/$name-$version.tar.gz)
|
||
|
|
||
|
build () {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr --mandir=/usr/man \
|
||
|
--with-gnu-ld --enable-shared \
|
||
|
--disable-nls
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|