blob: f2e4b0d15a6833bd8ec749fdbf5e5f230fec1835 (
plain)
1 # Description: command ftp client with completion
2 # URL: http://www.ncftp.com/ncftp/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5
6 name=ncftp
7 version=3.2.3
8 release=1
9 source=(http://ftp.uni-erlangen.de/mirrors/gentoo/distfiles/ncftp-$version-src.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --mandir=/usr/man
15
16 make
17 make install DESTDIR=$PKG
18 }
|