milis/talimatname/genel/fcron/talimat

36 lines
916 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Özellik açısından zengin cron uygulaması
# URL: http://fcron.free.fr
# Packager: milisarge
# Depends on:
name=fcron
version=3.2.0
release=1
source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz )
build() {
unset MAKEFLAGS
source /etc/blfs-bootscripts
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
tar xf $scripts-$scriptsversion.tar.bz2
# build package
cd $name-$version
./configure --prefix=/usr --sysconfdir=/etc \
--without-sendmail --localstatedir=/var \
--with-boot-install=no --mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-systemdsystemunitdir=no
make
make DESTDIR=$PKG install
rm $PKG/etc/pam.conf
mkdir -p $PKG/etc/pam.d
for i in fcron fcrontab
do install -D -m644 files/fcron.pam $PKG/etc/pam.d/$i
done
# Install the script
cd ../$scripts-$scriptsversion
make DESTDIR=$PKG install-fcron
rm -rf $PKG/usr/share/doc
}