talimat 477 B

1234567891011121314151617181920
  1. # Tanım: C'de protokol arabellekleri uygulaması
  2. # URL: https://github.com/protobuf-c/protobuf-c
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: protobuf
  5. # Grup: kütüphane
  6. isim=protobuf-c
  7. surum=1.3.0
  8. devir=1
  9. kaynak=(https://github.com/protobuf-c/protobuf-c/releases/download/v$surum/$isim-$surum.tar.gz)
  10. derle() {
  11. cd "$isim-$surum"
  12. ./configure --prefix=/usr --disable-static
  13. make
  14. make DESTDIR="$PKG" install
  15. install -Dm644 LICENSE "$PKG/usr/share/licenses/$isim/LICENSE"
  16. }