diff options
author | Sergey Lapin <slapin@ossfans.org> | 2009-05-14 17:41:56 +0400 |
---|---|---|
committer | Sergey Lapin <slapin@ossfans.org> | 2009-05-14 17:55:55 +0400 |
commit | d02457b03abe27767741f709a461e8d46294dd01 (patch) | |
tree | 569f43ca829b259c020c9fe46e09d7755f78c433 /recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb | |
parent | 0123e67d8568dd40be07d12f5b358c8854a3b78d (diff) |
dvd+rw-tools: Added new recipe
Diffstat (limited to 'recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb')
-rw-r--r-- | recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb b/recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb new file mode 100644 index 0000000000..69a12fbab0 --- /dev/null +++ b/recipes/dvd+rw-tools/dvd+rw-tools_7.1.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "tools to write DVDs" +PR = "r2" +DEPENDS += "m4-native" +RDEPENDS += "cdrkit" +SRC_URI = "http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-${PV}.tar.gz \ + file://01-growisofs-pioneer.dpatch;patch=1 \ + file://02-growisofs-manpage.dpatch;patch=1 \ + file://03-growisofs-dvd-dl.dpatch;patch=1 \ + file://04-kfreebsd.dpatch;patch=1 \ + file://07-beeping.dpatch;patch=1 \ + file://08-cdrkit-code.dpatch;patch=1 \ + file://09-cdrkit-doc.dpatch;patch=1 \ + file://10-includes.dpatch;patch=1 \ + " + +do_configure() { + m4 -DOS=Linux Makefile.m4 >Makefile +} + +do_compile() { + oe_runmake CC="${CC}" CXX="${CXX}" dvd+rw-tools +} + +do_install() { + install -d ${D}/usr/bin + install -m 755 ${S}/growisofs ${D}/usr/bin + install -m 755 ${S}/dvd+rw-booktype ${D}/usr/bin + install -m 755 ${S}/dvd+rw-format ${D}/usr/bin + install -m 755 ${S}/dvd+rw-mediainfo ${D}/usr/bin + install -m 755 ${S}/dvd-ram-control ${D}/usr/bin +} + |