mid-kid
8 years ago
8 changed files with 96 additions and 4 deletions
@ -0,0 +1,15 @@ |
|||||
|
import 'compile/configure' |
||||
|
|
||||
|
name=libmodplug |
||||
|
version=0.8.8.5 |
||||
|
update_url="https://sourceforge.net/projects/modplug-xmms/files/$name/" |
||||
|
update_names="/$name/$version/" |
||||
|
|
||||
|
dlextract "https://sourceforge.net/projects/modplug-xmms/files/$name/$version/$name-$version.tar.gz" \ |
||||
|
'5f30241db109d647781b784e62ddfaa1' |
||||
|
header_end |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
compile_configure |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,14 @@ |
|||||
|
import 'compile/configure' |
||||
|
|
||||
|
name=love |
||||
|
version=0.10.1 |
||||
|
update_url='http://love2d.org/' |
||||
|
|
||||
|
dlextract "https://bitbucket.org/rude/love/downloads/$name-$version-linux-src.tar.gz" \ |
||||
|
'7355507d8ac83ff75c439505527df1ae' |
||||
|
header_end |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
compile_configure |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,19 @@ |
|||||
|
import 'compile/cmake' |
||||
|
|
||||
|
name=openal-soft |
||||
|
version=1.17.2 |
||||
|
update_url="https://github.com/kcat/$name/releases" |
||||
|
|
||||
|
dlextract "https://github.com/kcat/$name/archive/$name-$version.tar.gz" \ |
||||
|
'8b23942c4e9a2fc3485b00fd06b0ddd5' |
||||
|
header_end |
||||
|
|
||||
|
cd "$name-$name-$version" |
||||
|
|
||||
|
# Fix paths |
||||
|
sed -i -e "/DESTINATION/s/bin/\"$(safe_sed "$dir_bindir")\"/" \ |
||||
|
-e "/DESTINATION/s/lib\${LIB_SUFFIX}/$(safe_sed "$dir_libdir")/" CMakeLists.txt |
||||
|
|
||||
|
compile_cmake -- -DSHARE_INSTALL_DIR="/$dir_prefix/$dir_datadir" |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,19 @@ |
|||||
|
import 'compile/cmake' |
||||
|
|
||||
|
name=physfs |
||||
|
version=2.0.3 |
||||
|
update_url="https://www.icculus.org/$name/downloads/" |
||||
|
|
||||
|
dlextract "https://www.icculus.org/$name/downloads/$name-$version.tar.bz2" \ |
||||
|
'c2c727a8a8deb623b521b52d0080f613' |
||||
|
header_end |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
|
||||
|
# Fix paths |
||||
|
sed -i -e "/DESTINATION/s/bin/\"$(safe_sed "$dir_bindir")\"/" \ |
||||
|
-e "/DESTINATION/s/lib\${LIB_SUFFIX}/\"$(safe_sed "$dir_libdir")\"/" CMakeLists.txt |
||||
|
|
||||
|
compile_cmake -- -DPHYSFS_BUILD_STATIC=FALSE |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,24 @@ |
|||||
|
# The configure script's --disable-static flag is broken. |
||||
|
|
||||
|
#import 'compile/configure' |
||||
|
import 'compile/cmake' |
||||
|
|
||||
|
name=SDL2 |
||||
|
version=2.0.4 |
||||
|
update_url='https://libsdl.org/download-2.0.php' |
||||
|
|
||||
|
dlextract "https://libsdl.org/release/$name-$version.tar.gz" \ |
||||
|
'44fc4a023349933e7f5d7a582f7b886e' |
||||
|
header_end |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
|
||||
|
# Fix paths |
||||
|
sed -i -e "/DESTINATION/s/bin/\"$(safe_sed "$dir_bindir")\"/" \ |
||||
|
-e "/DESTINATION/s/lib\${LIB_SUFFIX}/$(safe_sed "$dir_libdir")/" \ |
||||
|
-e "/DESTINATION/s/share/$(safe_sed "$dir_datadir")/" CMakeLists.txt |
||||
|
|
||||
|
#compile_configure -- --disable-static |
||||
|
compile_cmake -- -DSDL_STATIC=OFF |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
Loading…
Reference in new issue