forked from ports/compat-32
23 lines
455 B
Plaintext
23 lines
455 B
Plaintext
# Description: SDL version 2, Simple DirectMedia Layer
|
|
# URL: https://www.libsdl.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: alsa-lib-32 libsdl2 mesa-32
|
|
|
|
name=libsdl2-32
|
|
version=2.0.14
|
|
release=1
|
|
source=(https://www.libsdl.org/release/SDL2-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SDL2-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|