talimat 647 B

12345678910111213141516171819202122232425
  1. # Tanım: c++ kullanan hafif 2D ve 3D oyun makinesi
  2. # URL: https://urho3d.github.io/
  3. # Paketçi: yasarciv67
  4. # Gerekler: cmake xorg-libx11 xorg-glu xorg-libxrandr
  5. # Grup: oyun
  6. isim=urho3d
  7. surum=1.6
  8. devir=1
  9. kaynak=(https://github.com/urho3d/Urho3D/archive/1.6.tar.gz::Urho3D-1.6.tar.gz)
  10. derle() {
  11. cd Urho3D-1.6
  12. mkdir -p "$SRC/Urho3D-$surum/build"
  13. cd "$SRC/Urho3D-$surum/build"
  14. cmake "$SRC/Urho3D-$surum/" -DCMAKE_INSTALL_PREFIX="/usr" -DURHO3D_USE_LIB_DEB=1 -DURHO3D_SAMPLES=1
  15. make
  16. cd "$SRC/Urho3D-$surum/build"
  17. make DESTDIR="$PKG/" install
  18. cd "$PKG/usr/bin"
  19. mv "./Editor.sh" "./urho3d-editor.sh"
  20. rm lua luac
  21. }