278cc75865
Fixes http://autobuild.buildroot.net/results/b2b/b2b836b095251950e3229b66d6ca9faeaec45e72/ http://autobuild.buildroot.net/results/03b/03be24979d3ec4b08ebc7841ce1e2bcb05d26f97/ http://autobuild.buildroot.net/results/083/083ce6e998154a77dbaa16b3bed08570b745e587/ http://autobuild.buildroot.net/results/a51/a51da652314b01ae15f99708c5551f571247342b/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# dvdrw-tools
|
|
#
|
|
################################################################################
|
|
|
|
DVDRW_TOOLS_VERSION = 7.1
|
|
DVDRW_TOOLS_SOURCE = dvd+rw-tools-$(DVDRW_TOOLS_VERSION).tar.gz
|
|
DVDRW_TOOLS_SITE = http://fy.chalmers.se/~appro/linux/DVD+RW/tools
|
|
DVDRW_TOOLS_LICENSE = GPLv2
|
|
DVDRW_TOOLS_LICENSE_FILES = LICENSE
|
|
DVDRW_TOOLS_DEPENDENCIES = host-m4
|
|
|
|
define DVDRW_TOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
ifeq ($(BR2_PACKAGE_DVDRW_TOOLS_CDRKIT_BACKEND),y)
|
|
DVDRW_TOOLS_BACKEND = genisoimage
|
|
DVDRW_TOOLS_DEPENDENCIES += cdrkit
|
|
else ifeq ($(BR2_PACKAGE_DVDRW_TOOLS_XORRISO_BACKEND),y)
|
|
DVDRW_TOOLS_BACKEND = xorrisofs
|
|
DVDRW_TOOLS_DEPENDENCIES += xorriso
|
|
endif
|
|
|
|
define DVDRW_TOOLS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/dvd-ram-control $(TARGET_DIR)/usr/bin/dvd-ram-control
|
|
$(INSTALL) -m 0755 -D $(@D)/dvd+rw-booktype $(TARGET_DIR)/usr/bin/dvd+rw-booktype
|
|
$(INSTALL) -m 0755 -D $(@D)/dvd+rw-format $(TARGET_DIR)/usr/bin/dvd+rw-format
|
|
$(INSTALL) -m 0755 -D $(@D)/dvd+rw-mediainfo $(TARGET_DIR)/usr/bin/dvd+rw-mediainfo
|
|
$(INSTALL) -m 0755 -D $(@D)/growisofs $(TARGET_DIR)/usr/bin/growisofs
|
|
ln -s -f $(DVDRW_TOOLS_BACKEND) $(TARGET_DIR)/usr/bin/mkisofs
|
|
endef
|
|
|
|
$(eval $(generic-package))
|