21 lines
564 B
Plaintext
21 lines
564 B
Plaintext
# Description: Bir zamanların efsane oyunu SuperMario benzeri bir oyun
|
||
# URL: http://supertux.github.io/
|
||
# Packager: yasarciv67@gmail.com
|
||
# Depends on: sdl2-image physfs openal libogg libvorbis glew glbinding cmake boost
|
||
|
||
name=supertux
|
||
version=0.5.1
|
||
release=1
|
||
source=(https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-Source.tar.gz)
|
||
|
||
build() {
|
||
cd SuperTux-v$version-Source
|
||
cmake . \
|
||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
-DINSTALL_SUBDIR_BIN=bin \
|
||
-DCMAKE_BUILD_TYPE=Release
|
||
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|