talimat 585 B

123456789101112131415161718192021
  1. # Tanım: Spot-On bağlam kütüphanesi
  2. # URL: https://textbrowser.github.io/spot-on/
  3. # Paketçi: milisarge
  4. # Gerekler: sqlite unzip libgcrypt libntru
  5. # Grup: kütüphane
  6. isim=libspoton
  7. surum=2017.01.20
  8. devir=1
  9. kaynak=(http://downloads.sourceforge.net/project/spot-on/Version%20${surum}/Spot-On-Src.d.zip?r=)
  10. derle() {
  11. unzip $SRC/Spot*
  12. cd "$SRC/spot-on.d/libSpotOn"
  13. make
  14. install -dm755 -- "$PKG/usr/lib"
  15. install -m755 -- libspoton.so "$PKG/usr/lib/libspoton.so"
  16. install -dm755 -- "$PKG/usr/include"
  17. install -m755 -- libspoton.h "$PKG/usr/include/libspoton.h"
  18. }