contrib/bftpd/Pkgfile

26 lines
630 B
Plaintext
Raw Normal View History

2009-01-11 16:06:36 +01:00
# Description: Small, easy-to-configure FTP server.
# URL: http://bftpd.sourceforge.net/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Simone Rota, sip at crux dot nu
name=bftpd
2011-07-29 12:44:18 +02:00
version=3.6
2009-01-11 16:06:36 +01:00
release=1
2011-01-10 09:28:55 +01:00
source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version/$name-$version.tar.gz
2010-06-19 10:57:49 +02:00
ftpd)
2009-01-11 16:06:36 +01:00
build () {
cd $name
2010-06-19 10:57:49 +02:00
./configure \
--prefix=/usr \
--enable-libz
2009-01-11 16:06:36 +01:00
make
2010-06-19 10:57:49 +02:00
install -d $PKG/usr/sbin $PKG/usr/man/man8 $PKG/etc $PKG/etc/rc.d
2009-01-11 16:06:36 +01:00
make DESTDIR=$PKG install
2010-06-19 10:57:49 +02:00
install -D -m 0755 $SRC/ftpd $PKG/etc/rc.d/ftpd
chmod 0600 $PKG/etc/bftpd.conf
2009-01-11 16:06:36 +01:00
ln -sf bftpd $PKG/usr/sbin/in.ftpd
}