diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/6tunnel |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/6tunnel')
-rw-r--r-- | community/6tunnel/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/6tunnel/PKGBUILD b/community/6tunnel/PKGBUILD new file mode 100644 index 000000000..a873e8817 --- /dev/null +++ b/community/6tunnel/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Anders Bergh <anders1@gmail.com> +pkgname=6tunnel +pkgver=0.11rc2 +pkgrel=4 +pkgdesc="Tunnels IPv6 connections for IPv4-only applications" +url="http://toxygen.net/6tunnel/" +license=('GPL') +arch=('i686' 'x86_64') +depends=(glibc) +source=(http://toxygen.net/6tunnel/$pkgname-$pkgver.tar.gz) +md5sums=('74e02d4f0704b3083a01feda66033449') + +build() { + cd $srcdir/$pkgname-$pkgver + autoconf + ./configure --prefix=/usr + make || return 1 + install -Dm644 6tunnel.1 $pkgdir/usr/share/man/man1/6tunnel.1 + install -Dm755 6tunnel $pkgdir/usr/bin/6tunnel +} |