# 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 version=3.6 release=1 source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version/$name-$version.tar.gz ftpd) build () { cd $name ./configure \ --prefix=/usr \ --enable-libz make install -d $PKG/usr/sbin $PKG/usr/man/man8 $PKG/etc $PKG/etc/rc.d make DESTDIR=$PKG install install -D -m 0755 $SRC/ftpd $PKG/etc/rc.d/ftpd chmod 0600 $PKG/etc/bftpd.conf ln -sf bftpd $PKG/usr/sbin/in.ftpd }