From: Tilman Sauerbeck Date: Mon, 5 Mar 2007 07:34:39 +0000 (+0100) Subject: corkscrew: initial release X-Git-Url: http://git.code-monkey.de/?p=crux-ports.git;a=commitdiff_plain;h=706c0d9da0ff2ebc508d94fac57442b27fbe23f2;hp=8e9621e81cd9fadc05e380997307674979a55ad3 corkscrew: initial release --- diff --git a/corkscrew/.footprint b/corkscrew/.footprint new file mode 100644 index 0000000..8cca51a --- /dev/null +++ b/corkscrew/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/corkscrew diff --git a/corkscrew/.md5sum b/corkscrew/.md5sum new file mode 100644 index 0000000..4a07a07 --- /dev/null +++ b/corkscrew/.md5sum @@ -0,0 +1 @@ +35df77e7f0e59c0ec4f80313be52c10a corkscrew-2.0.tar.gz diff --git a/corkscrew/Pkgfile b/corkscrew/Pkgfile new file mode 100644 index 0000000..eb5625b --- /dev/null +++ b/corkscrew/Pkgfile @@ -0,0 +1,18 @@ +# Description: Tool for tunneling SSH through HTTP proxies +# URL: http://www.agroman.net/corkscrew/ +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: + +name=corkscrew +version=2.0 +release=1 +source=(http://www.agroman.net/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install +}