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