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