opt/libsdl/Pkgfile

21 lines
605 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: SDL, Simple DirectMedia Layer
2006-03-26 03:51:53 +02:00
# Description: a multimedia library which provides fast access to both graphics framebuffers and audio devices
2006-02-23 16:26:10 +01:00
# URL: http://www.libsdl.org
2006-03-26 03:51:53 +02:00
# Maintainer: Simone Rota, sip at crux dot nu
# Packager: sten, nick dot steeves at shaw dot ca
2006-02-23 16:26:10 +01:00
# Depends on: alsa-lib
name=libsdl
version=1.2.9
2006-03-26 03:51:53 +02:00
release=2
source=(http://www.libsdl.org/release/SDL-$version.tar.gz $name-$version-gcc4.patch)
2006-02-23 16:26:10 +01:00
build () {
cd SDL-$version
2006-03-26 03:51:53 +02:00
patch -p1 -i $SRC/$name-$version-gcc4.patch
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
2006-03-26 03:51:53 +02:00
--enable-alsa
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
}