opt/libsdl/Pkgfile

26 lines
526 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: SDL, Simple DirectMedia Layer
2019-08-21 13:41:42 +02:00
# URL: https://www.libsdl.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: alsa-lib glu
2006-02-23 16:26:10 +01:00
name=libsdl
2012-01-23 08:40:08 +01:00
version=1.2.15
2019-08-21 13:41:42 +02:00
release=5
source=(https://www.libsdl.org/release/SDL-$version.tar.gz
$name-1.2.x-libx11.patch $name-$version-bs.patch)
2006-02-23 16:26:10 +01:00
2019-08-21 13:41:42 +02:00
build() {
cd SDL-$version
2010-08-31 17:28:05 +02:00
2019-08-21 13:41:42 +02:00
patch -p1 -i $SRC/$name-1.2.x-libx11.patch
patch -p1 -i $SRC/$name-$version-bs.patch
2019-08-21 13:41:42 +02:00
./configure \
--prefix=/usr \
--enable-alsa \
--disable-rpath
2016-01-21 01:03:37 +01:00
2019-08-21 13:41:42 +02:00
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}