summaryrefslogtreecommitdiff
path: root/community/httptunnel/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/httptunnel/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/httptunnel/PKGBUILD')
-rw-r--r--community/httptunnel/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/community/httptunnel/PKGBUILD b/community/httptunnel/PKGBUILD
new file mode 100644
index 000000000..e9a048daa
--- /dev/null
+++ b/community/httptunnel/PKGBUILD
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 31032 2009-03-24 04:10:30Z eric $
+# Maintainer: dorphell <dorphell@archlinux.org>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+
+pkgname=httptunnel
+pkgver=3.3
+pkgrel=2
+pkgdesc="httptunnel creates a bidirectional virtual data connection tunnelled in HTTP requests"
+arch=(i686 x86_64)
+url="http://www.nocrew.org/software/httptunnel"
+license=('GPL2')
+depends=('glibc')
+source=(http://www.nocrew.org/software/httptunnel/$pkgname-$pkgver.tar.gz)
+md5sums=('493cc0f5f21e9955db27ee9cd9a976d5')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --mandir=/usr/share/man || return 1
+ make || return 1
+ make DESTDIR=$pkgdir install || return 1
+}