talimat 608 B

1234567891011121314151617181920212223242526
  1. # Tanım: HTTP/2'nin çerçeve katmanı, yeniden kullanılabilir C kitaplığı olarak uygulanır.
  2. # URL: https://nghttp2.org/
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: kütüphane
  6. isim=libnghttp2
  7. surum=1.32.0
  8. devir=1
  9. kaynak=(https://github.com/nghttp2/nghttp2/releases/download/v1.32.0/nghttp2-1.32.0.tar.xz)
  10. derle() {
  11. cd nghttp2-$surum
  12. autoreconf -i
  13. ./configure \
  14. --prefix=/usr \
  15. --disable-examples \
  16. --disable-python-bindings \
  17. --enable-lib-only
  18. make
  19. make check
  20. cd lib
  21. make DESTDIR="$PKG" install
  22. install -Dm644 ../COPYING "$PKG/usr/share/licenses/libnghttp2/COPYING"
  23. }