20 lines
477 B
Plaintext
20 lines
477 B
Plaintext
# Tanım: C'de protokol arabellekleri uygulaması
|
||
# URL: https://github.com/protobuf-c/protobuf-c
|
||
# Paketçi: Cihan_Alkan
|
||
# Gerekler: protobuf
|
||
# Grup: kütüphane
|
||
|
||
isim=protobuf-c
|
||
surum=1.3.0
|
||
devir=1
|
||
|
||
kaynak=(https://github.com/protobuf-c/protobuf-c/releases/download/v$surum/$isim-$surum.tar.gz)
|
||
|
||
derle() {
|
||
cd "$isim-$surum"
|
||
./configure --prefix=/usr --disable-static
|
||
make
|
||
make DESTDIR="$PKG" install
|
||
install -Dm644 LICENSE "$PKG/usr/share/licenses/$isim/LICENSE"
|
||
}
|