# Tanım: Bir vpn uygulaması
# URL:  http://www.tinc-vpn.org
# Paketçi: milisarge
# Gerekler:
# Grup: ağ

isim=tinc
surum=1.0.31
devir=1
kaynak=(https://github.com/gsliepen/tinc/archive/release-$surum.tar.gz)

derle() {
	cd $isim-release-$surum
	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 {} +
}