Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'compile/configure'
|
|
|
|
|
|
|
|
name=SDL2
|
|
|
|
version=2.0.8
|
|
|
|
|
|
|
|
dlextract "https://libsdl.org/release/$name-$version.tar.gz" \
|
|
|
|
'3800d705cef742c6a634f202c37f263f'
|
|
|
|
dlfile "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/libsdl2/files/libsdl2-2.0.6-static-libs.patch" \
|
|
|
|
'7652413d610791352abb0db4fe516196'
|
|
|
|
_
|
|
|
|
|
|
|
|
cd "$name-$version"
|
|
|
|
patch -p1 -i "../libsdl2-2.0.6-static-libs.patch"
|
|
|
|
./autogen.sh
|
|
|
|
|
|
|
|
compile_configure -- --disable-static \
|
|
|
|
--disable-alsa-shared \
|
|
|
|
--disable-esd-shared \
|
|
|
|
--disable-pulseaudio-shared \
|
|
|
|
--disable-arts-shared \
|
|
|
|
--disable-nas-shared \
|
|
|
|
--disable-sndio-shared \
|
|
|
|
--disable-wayland-shared \
|
|
|
|
--disable-mir-shared \
|
|
|
|
--disable-x11-shared \
|
|
|
|
--disable-directfb-shared \
|
|
|
|
--disable-fusionsound-shared
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|