33 lines
852 B
Plaintext
33 lines
852 B
Plaintext
# Description: Bir ağ üzerinden büyük dosya arşivlerine hizmet etmek için güvenli ve son derece yapılandırılabilir bir FTP arka plan programı
|
||
# URL: ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.5a.tar.gz
|
||
# Packager: milisarge
|
||
# Depends on: libcap pam mariadb openssl pcre postgresql
|
||
|
||
name=proftpd
|
||
version=1.3.5a
|
||
release=1
|
||
source=(ftp://ftp.proftpd.org/distrib/source/$name-$version.tar.gz
|
||
proftpd.conf)
|
||
|
||
build() {
|
||
|
||
cd $name-$version
|
||
|
||
source /etc/blfs-bootscripts
|
||
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
|
||
tar xvf $scripts-$scriptsversion.tar.bz2
|
||
|
||
|
||
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/run
|
||
|
||
make
|
||
make DESTDIR=$PKG install
|
||
|
||
install -v -m755 -d $PKG/etc
|
||
cp -v $SRC/proftpd.conf $PKG/etc
|
||
|
||
cd $scripts-$scriptsversion
|
||
make DESTDIR=$PKG install-proftpd
|
||
|
||
}
|