mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
672 B
Bash
21 lines
672 B
Bash
# $Id: PKGBUILD 31087 2009-03-24 09:40:35Z 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
|
|
}
|