33 lines
837 B
Plaintext
33 lines
837 B
Plaintext
|
# Tanım: 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
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: libcap pam mariadb openssl pcre postgresql
|
|||
|
|
|||
|
isim=proftpd
|
|||
|
surum=1.3.5a
|
|||
|
devir=1
|
|||
|
kaynak=(ftp://ftp.proftpd.org/distrib/source/$isim-$surum.tar.gz
|
|||
|
proftpd.conf)
|
|||
|
|
|||
|
derle() {
|
|||
|
|
|||
|
cd $isim-$surum
|
|||
|
|
|||
|
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
|
|||
|
|
|||
|
}
|