talimat 566 B

1234567891011121314151617181920212223
  1. # Tanım: "RESTful" olduğunu iddia eden web servislerine daha kolay erişilmesini sağlamak için tasarlanmış bir kütüphanedir.
  2. # URL: https://wiki.gnome.org/Projects/Librest
  3. # Paketçi: milisarge
  4. # Gerekler: libsoup gobject-introspection
  5. # Grup: kütüphane
  6. isim=librest
  7. surum=0.8.1
  8. devir=1
  9. kaynak=(https://git.gnome.org/browse/librest/snapshot/librest-$surum.tar.xz)
  10. derle() {
  11. cd librest-$surum
  12. NOCONFIGURE=1 ./autogen.sh
  13. ./configure \
  14. --prefix=/usr \
  15. --sysconfdir=/etc \
  16. --with-ca-certificates=/etc/ssl/certs
  17. make
  18. make DESTDIR=$PKG install
  19. }