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