Merges.
[vuplus_openembedded] / dcron / dcron_2.3.3.oe
1 DEPENDS = "virtual/libc"
2 DESCRIPTION = "Dillon's Cron is a multi-user cron written from scratch, \
3 similar to vixie-cron but with major differences."
4
5 SRC_URI = "http://ibiblio.org/pub/Linux/system/daemons/cron/dcron-${PV}.tar.gz \
6            file://compile.patch;patch=1"
7
8 do_install () {
9         install -d ${D}/${bindir} ${D}/${sbindir} \
10                    ${D}/${mandir}/man1 ${D}/${mandir}/man8
11         install -m 0755 crond ${D}/${sbindir}/
12         install -m 4755 crontab ${D}/${bindir}/
13         install crontab.1 ${D}/${mandir}/man1
14         install crond.8 ${D}/${mandir}/man8
15 }