compat-32/libsdl2-32/Pkgfile

28 lines
665 B
Plaintext
Raw Normal View History

2019-08-04 17:44:02 +02:00
# Description: SDL version 2, Simple DirectMedia Layer
# URL: https://www.libsdl.org/
2019-08-04 17:44:02 +02:00
# 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 libsdl2 mesa3d-32
2019-08-04 17:44:02 +02:00
name=libsdl2-32
2020-03-12 13:48:56 +01:00
version=2.0.12
release=1
source=(https://www.libsdl.org/release/SDL2-$version.tar.gz
SDL2-2.0.10-opengl_include_fix-1.patch)
2019-08-04 17:44:02 +02:00
build() {
2019-08-04 17:44:02 +02:00
cd SDL2-$version
# https://www.mail-archive.com/blfs-book@lists.linuxfromscratch.org/msg40028.html
patch -p1 -i $SRC/SDL2-2.0.10-opengl_include_fix-1.patch
2019-08-04 17:44:02 +02:00
CONFIG_SHELL=/bin/bash \
./configure \
--prefix=/usr \
--libdir=/usr/lib32
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share}
}