2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: bir vpn uygulaması
|
2017-05-24 01:56:50 +02:00
|
|
|
|
# URL: http://www.tinc-vpn.org
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler:
|
2017-05-24 01:56:50 +02:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=tinc
|
|
|
|
|
surum=1.0.31
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(https://github.com/gsliepen/tinc/archive/release-$surum.tar.gz)
|
2017-05-24 01:56:50 +02:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd $isim-release-$surum
|
2017-05-24 01:56:50 +02:00
|
|
|
|
autoreconf -fsi
|
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
install -d "$PKG"/etc/tinc/
|
|
|
|
|
install -dm755 "$PKG"/usr/share/tinc/examples
|
|
|
|
|
cp -r doc/sample-config $PKG/usr/share/tinc/examples
|
|
|
|
|
cp doc/sample-config/tinc.conf "$PKG"/etc/tinc/
|
|
|
|
|
find "$PKG"/usr/share/tinc/examples -type f -exec chmod 644 {} +
|
|
|
|
|
find "$PKG"/usr/share/tinc/examples -type d -exec chmod 755 {} +
|
|
|
|
|
}
|