diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/6tunnel | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/6tunnel')
-rw-r--r-- | community/6tunnel/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/6tunnel/PKGBUILD b/community/6tunnel/PKGBUILD new file mode 100644 index 000000000..c619ab778 --- /dev/null +++ b/community/6tunnel/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 65025 2012-02-20 02:05:08Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Anders Bergh <anders1@gmail.com> + +pkgname=6tunnel +pkgver=0.11rc2 +pkgrel=5 +pkgdesc="Tunnels IPv6 connections for IPv4-only applications" +url="http://toxygen.net/6tunnel/" +license=('GPL') +arch=('i686' 'x86_64') +depends=() +source=(http://toxygen.net/6tunnel/$pkgname-$pkgver.tar.gz) +md5sums=('74e02d4f0704b3083a01feda66033449') + +build() { + cd $srcdir/$pkgname-$pkgver + autoconf + ./configure --prefix=/usr + make + install -Dm644 6tunnel.1 $pkgdir/usr/share/man/man1/6tunnel.1 + install -Dm755 6tunnel $pkgdir/usr/bin/6tunnel +} |