20 lines
504 B
Plaintext
20 lines
504 B
Plaintext
# Tanım: P2P vpn sistemi,ağ arayüz ayarları için ncd programlama dili
|
||
# URL: https://github.com/ambrop72/badvpn
|
||
# Paketçi: milisarge
|
||
# Gerekler: nss cmake
|
||
# Grup: ağ
|
||
|
||
isim=badvpn
|
||
surum=1.999.130
|
||
devir=1
|
||
kaynak=(https://github.com/ambrop72/badvpn/archive/$surum.tar.gz
|
||
badvpn-ncd.conf.d)
|
||
|
||
derle() {
|
||
cd $isim-$surum
|
||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
|
||
make
|
||
make DESTDIR="$PKG" install
|
||
install -D -m0644 "$SRC/badvpn-ncd.conf.d" "$PKG/etc/conf.d/badvpn-ncd"
|
||
}
|