mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 19:44:47 +00:00
21 lines
377 B
Plaintext
21 lines
377 B
Plaintext
# description : MPEG1/MPEG2 decoder (includes libmpeg2)
|
|
# homepage : https://libmpeg2.sourceforge.io/
|
|
# depends : sdl
|
|
|
|
name=libmpeg2
|
|
version=0.5.1
|
|
release=1
|
|
source="https://libmpeg2.sourceforge.io/files/$name-$version.tar.gz"
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-gnu-ld \
|
|
--enable-shared \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|