milis/talimatname/genel/supertuxkart/talimat

31 lines
771 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: 3D kart yarış oyunu
# URL: http://supertuxkart.sourceforge.net/
# Packager: milisarge
# Depends on: cmake setconf bluez subversion xorg-mesa imagemagick openal libvorbis fribidi xorg-libxrandr xorg-glu
name=supertuxkart
version=0.9.2
release=1
source=(http://downloads.sourceforge.net/$name/$name-$version-src.tar.xz)
build() {
cd ${SRC}/supertuxkart-${version}
_fn="data/${name}.desktop"
setconf "$_fn" Exec "$name"
setconf "$_fn" TryExec "$name"
setconf "$_fn" Icon "$name"_128
[[ -d build ]] && rm -r build
mkdir build && cd build
cmake .. \
-DIRRLICHT_DIR="$SRC/irrlicht" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_CXX_FLAGS="-lpthread -lm -ldl $CXXFLAGS -std=gnu++98"
make
make DESTDIR=${PKG} install
}