diff options
author | Jose V Beneyto <joberui@ei.upv.es> | 2006-11-22 01:59:21 +0100 |
---|---|---|
committer | Jose V Beneyto <joberui@ei.upv.es> | 2006-11-22 01:59:21 +0100 |
commit | 114abd3ce24c387c13794dd1b245c7c636657919 (patch) | |
tree | 1ae1efbad4e4f572097ba6d9184580886ec4e040 /cryptcat/Pkgfile | |
parent | 9eee7d7761a5bb8fee402b977244ecf64ba336f5 (diff) | |
download | contrib-114abd3ce24c387c13794dd1b245c7c636657919.tar.gz contrib-114abd3ce24c387c13794dd1b245c7c636657919.tar.xz |
cryptcat: initial commit
Diffstat (limited to 'cryptcat/Pkgfile')
-rw-r--r-- | cryptcat/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cryptcat/Pkgfile b/cryptcat/Pkgfile new file mode 100644 index 000000000..c79f9f178 --- /dev/null +++ b/cryptcat/Pkgfile @@ -0,0 +1,20 @@ +# Description: Cryptcat is the standard netcat enhanced with twofish encryption. +# URL: http://farm9.org/Cryptcat/ +# Maintainer: Jose V Beneyto, joberui at ei dot upv dot es +# Packager: Jose V Beneyto, joberui at ei dot upv dot es +# Depends on: glibc + +name=cryptcat +version=1.2.1 +release=1 +source=(http://dl.sourceforge.net/sourceforge/$name/$name-unix-$version.tar \ + netcat.patch) + +build() { + tar -C $SRC -xvf $name-unix-$version.tar + cd unix + patch netcat.c $SRC/netcat.patch + make linux + install -d $PKG/usr/bin + install -m 755 $name $PKG/usr/bin +} |