diff options
| -rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.7.9.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate_3.7.9.bb b/meta/recipes-extended/logrotate/logrotate_3.7.9.bb new file mode 100644 index 0000000000..f657d78871 --- /dev/null +++ b/meta/recipes-extended/logrotate/logrotate_3.7.9.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | DESCRIPTION = "Rotates, compresses, removes and mails system log files" | ||
| 2 | SECTION = "console/utils" | ||
| 3 | PRIORITY = "required" | ||
| 4 | HOMEPAGE = "https://fedorahosted.org/releases/l/o/logrotate" | ||
| 5 | LICENSE = "GPLv2" | ||
| 6 | PR = "r0" | ||
| 7 | |||
| 8 | DEPENDS="coreutils" | ||
| 9 | |||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | ||
| 11 | |||
| 12 | SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz" | ||
| 13 | |||
| 14 | |||
| 15 | EXTRA_OEMAKE = "CC='${CC}'" | ||
| 16 | |||
| 17 | do_install(){ | ||
| 18 | oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install_append(){ | ||
| 22 | mkdir -p ${D}${sysconfdir}/logrotate.d | ||
| 23 | mkdir -p ${D}${sysconfdir}/cron.daily | ||
| 24 | mkdir -p ${D}${localstatedir}/lib | ||
| 25 | install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf | ||
| 26 | install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate | ||
| 27 | touch ${D}${localstatedir}/lib/logrotate.status | ||
| 28 | } | ||
