diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/cdstatus/cdstatus_0.96.05.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/cdstatus/cdstatus_0.96.05.bb b/packages/cdstatus/cdstatus_0.96.05.bb new file mode 100644 index 0000000000..117cdac6b9 --- /dev/null +++ b/packages/cdstatus/cdstatus_0.96.05.bb @@ -0,0 +1,23 @@ +# cdstatus OE build file + +PR="r2" +LICENSE="GPL" +HOMEPAGE = "http://cdstatus.sourceforge.net/" +FILES_${PN} += ${datadir}/cdstatus.cfg + +SRC_URI="${SOURCEFORGE_MIRROR}/cdstatus/cdstatus-0.96.05.tar.gz \ + file://cdstatus.patch;patch=1" + +S="${WORKDIR}/cdstatus-0.96.05" + +inherit autotools + +do_install() { + install -d 0755 ${D}/${bindir} + install -d 0755 ${D}/${datadir} + install -d 0755 ${D}/${mandir} + install -m 0755 src/cdstatus ${D}/${bindir} + install -m 0644 cdstatus.cfg ${D}/${datadir} + install -m 0644 cdstatus.1 ${D}/${mandir} + +} |