1
0
forked from ports/contrib

tnftp: initial import

This commit is contained in:
Mark Rosenstand 2006-10-22 10:18:34 +02:00
parent 90f2dfcf43
commit 71e010597f
4 changed files with 24 additions and 0 deletions

6
tnftp/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ftp
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/ftp.1.gz

1
tnftp/.md5sum Normal file
View File

@ -0,0 +1 @@
bab3c6ccc342d3156cdcd92746ab924d tnftp-20050625.tar.gz

0
tnftp/.sync Normal file
View File

17
tnftp/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Port of the NetBSD FTP client
# URL: http://www.netbsd.org/
# Maintainer: Mark Rosenstand, mark at borkware dot net
name=tnftp
version=20050625
release=1
source=(ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/tnftp-$version.tar.gz)
build() {
cd tnftp-$version
./configure --prefix=/usr
make
mkdir -p $PKG/usr/{bin,man/man1}
cp src/ftp $PKG/usr/bin
cp src/ftp.1 $PKG/usr/man/man1
}