18 lines
444 B
Plaintext
18 lines
444 B
Plaintext
# Description: A SDL MPEG player library.
|
|
# URL: http://www.lokigames.com/development/smpeg.php3
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: libsdl
|
|
|
|
name=smpeg
|
|
version=0.4.4
|
|
release=1
|
|
source=(ftp://sunsite.dk/pub/os/linux/loki/open-source/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
sed -i -e 's|\(libsmpeg_la_LDFLAGS = .*\)|\1 -lstdc++|' Makefile
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|