talimat 564 B

123456789101112131415161718192021
  1. # Description: Bir zamanların efsane oyunu SuperMario benzeri bir oyun
  2. # URL: http://supertux.github.io/
  3. # Packager: yasarciv67@gmail.com
  4. # Depends on: sdl2-image physfs openal libogg libvorbis glew glbinding cmake boost
  5. name=supertux
  6. version=0.5.1
  7. release=1
  8. source=(https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-Source.tar.gz)
  9. build() {
  10. cd SuperTux-v$version-Source
  11. cmake . \
  12. -DCMAKE_INSTALL_PREFIX=/usr \
  13. -DINSTALL_SUBDIR_BIN=bin \
  14. -DCMAKE_BUILD_TYPE=Release
  15. make
  16. make DESTDIR=$PKG install
  17. }