milis/talimatname/genel/b/bitfighter/talimat

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: Hızlı tempolu ekip tabanlı dış alan çok oyunculu muharebe oyunu
2017-06-12 03:26:01 +02:00
# URL: http://bitfighter.org/
2017-10-27 20:46:27 +02:00
# Paketçi: milisarge
# Gerekler: cmake xorg-glu sdl2 libpng libvorbis libmodplug openal speex
2017-06-12 03:26:01 +02:00
name=bitfighter
version=0.19f
release=1
source=(http://bitfighter.org/files/bitfighter-${version/./}.tar.gz
https://bitfighter.org/files/classic_level_pack.zip
bitfighter.png
bitfighter.desktop)
2017-10-27 23:59:41 +02:00
derle() {
2017-06-12 03:26:01 +02:00
cd ${name}-${version/./}
mkdir -p build
cd build
cmake \
-DCMAKE_INSTALL_PREFIX:PATH="/usr" \
-DUSE_SDL2:BOOL=YES \
-DUSE_GLES:BOOL=YES \
-DCMAKE_BUILD_TYPE=Release \
..
make VERBOSE=1
# install game ressources and executable
install -d "$PKG"/usr/share/$name "$PKG"/usr/bin
cd ..
cp "${SRC}"/classic_level_pack/* resource/
cp notifier/gci/bitfighter.ini resource/
cp -r resource/* "$PKG"/usr/share/$name
install -m755 exe/$name "$PKG"/usr/bin/$name
# install a desktop entry
install -Dm644 ../$name.png "$PKG"/usr/share/pixmaps/$name.png
install -Dm644 ../$name.desktop "$PKG"/usr/share/applications/$name.desktop
}