2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Logrotate yardımcı programı, günlük yönetimini basitleştirmek için tasarlanmıştır
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: https://fedorahosted.org/logrotate/
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: popt
|
2017-04-04 09:42:26 +02:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=logrotate
|
|
|
|
|
surum=3.8.8
|
|
|
|
|
devir=1
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
kaynak=(
|
|
|
|
|
https://fedorahosted.org/releases/l/o/logrotate/logrotate-$surum.tar.gz
|
2016-02-24 01:27:23 +01:00
|
|
|
|
logrotate.conf
|
|
|
|
|
logrotate.README)
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd $isim-$surum
|
2016-02-24 01:27:23 +01:00
|
|
|
|
make WITH_ACL=yes RPM_OPT_FLAGS="$CFLAGS" EXTRA_LDFLAGS="$LDFLAGS"
|
|
|
|
|
make test
|
|
|
|
|
make PREFIX=$PKG MANDIR="/usr/share/man" install
|
|
|
|
|
|
|
|
|
|
# add missing dir
|
|
|
|
|
install -dm755 $PKG/etc/logrotate.d
|
|
|
|
|
# install the logrotate.conf file
|
|
|
|
|
install -Dm644 $SRC/logrotate.conf $PKG/etc/logrotate.conf
|
|
|
|
|
}
|