compat-32/libsdl-32/Pkgfile

27 lines
675 B
Plaintext
Raw Normal View History

# Description: SDL, Simple DirectMedia Layer
# URL: http://www.libsdl.org
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: alsa-lib-32 glib-32 libsdl mesa3d-32
name=libsdl-32
version=1.2.15
release=2
source=(http://www.libsdl.org/release/SDL-$version.tar.gz)
build() {
cd SDL-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--libdir=/usr/lib32 \
--program-suffix=-32 \
--enable-alsa
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{include,man,share}
# --program-suffix=-32 is being ignored
mv $PKG/usr/bin/sdl-config $PKG/usr/bin/sdl-config-32
}