mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
731 B
Bash
21 lines
731 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Georg Grabler (STiAT) <ggrabler@gmail.com>
|
|
|
|
pkgname=proxytunnel
|
|
pkgver=1.9.0
|
|
pkgrel=1
|
|
pkgdesc="ProxyTunnel is a program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy."
|
|
arch=('i686' 'x86_64')
|
|
url="http://proxytunnel.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('openssl')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz)
|
|
md5sums=('d74472b89c3f3b3b0abf6bd809ae34c2')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
sed -i 's|PREFIX =/usr/local|PREFIX =/usr|g' Makefile
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|