mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Changelog: https://git.linuxtv.org/dtv-scan-tables.git/log/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: add link to git change log] Signed-off-by: Julien Olivain <ju.o@free.fr>
28 lines
1.1 KiB
Makefile
28 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# dtv-scan-tables
|
|
#
|
|
################################################################################
|
|
|
|
DTV_SCAN_TABLES_VERSION = 15661aabc342b72f539d4600ad87df6663e23aa4
|
|
DTV_SCAN_TABLES_SITE = https://git.linuxtv.org/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 GPL-2.0 and the LGPL-2.1), so we use
|
|
# that as the licensing information.
|
|
DTV_SCAN_TABLES_LICENSE = GPL-2.0, LGPL-2.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))
|