buildrootschalter/package/dtv-scan-tables/dtv-scan-tables.mk
Thomas Petazzoni 96b4550503 dtv-scan-tables: fix license files
Fixes:

  http://autobuild.buildroot.org/results/39a/39a8ba05c0d6e02b517d44b9c54b76acdb9174c2/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-03-30 17:25:47 +02:00

28 lines
1.0 KiB
Makefile

################################################################################
#
# dtv-scan-tables
#
################################################################################
DTV_SCAN_TABLES_VERSION = 7809ca1c04e688f35d09b8c1b2ac9b8ef4865322
DTV_SCAN_TABLES_SITE = http://linuxtv.org/git/dtv-scan-tables.git
DTV_SCAN_TABLES_SITE_METHOD = git
# This package only contains the transponders data. This is not a 'work'
# as per traditional copyright, but just a collection of 'facts', so there's
# probably no license to apply to these data files.
# However, the package prominently contains the COPYING and COPYING.LIB
# license files (respectively for the GPLv2 and the LGPLv2.1), so we use
# that as the licensing information.
DTV_SCAN_TABLES_LICENSE = GPLv2 LGPLv2.1
DTV_SCAN_TABLES_LICENSE_FILES = COPYING COPYING.LGPL
define DTV_SCAN_TABLES_INSTALL_TARGET_CMDS
for f in atsc dvb-c dvb-s dvb-t; do \
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/share/dvb/$$f; \
$(INSTALL) $(@D)/$$f/* $(TARGET_DIR)/usr/share/dvb/$$f; \
done
endef
$(eval $(generic-package))