talimat 609 B

1234567891011121314151617181920212223242526
  1. # Tanım: İnce bir Bullet-Ogre bağlantısı.
  2. # URL: http://www.ogre3d.org/forums/viewtopic.php?f=5&t=46856
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: cmake boost bullet ogre
  5. # Grup: geliştirme
  6. isim=btogre
  7. surum=6266297
  8. devir=1
  9. kaynak=(cmake-targets.patch
  10. BtOgre.cpp.patch)
  11. derle() {
  12. git_indir https://github.com/nikki93/btogre $isim
  13. cd "${SRC}/${isim}"
  14. patch -Np1 -i "${SRC}/cmake-targets.patch"
  15. patch "${SRC}/${isim}/BtOgre.cpp" "${SRC}/BtOgre.cpp.patch"
  16. cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
  17. -DOGRE_BUILD=/opt/OGRE-1.9 \
  18. -DOGRE_LIB_DIR=/opt/OGRE-1.9/lib
  19. make
  20. make DESTDIR="${PKG}" install
  21. }