b9824b3631
Add missing license info and file for package 'hwdata' [Peter: GPLv2 should be '+' variant, clarify that it is dual licensed] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
663 B
Makefile
20 lines
663 B
Makefile
################################################################################
|
|
#
|
|
# hwdata
|
|
#
|
|
################################################################################
|
|
|
|
HWDATA_VERSION = 0.230
|
|
HWDATA_SOURCE = hwdata_$(HWDATA_VERSION).orig.tar.gz
|
|
HWDATA_PATCH = hwdata_$(HWDATA_VERSION)-1.diff.gz
|
|
HWDATA_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/h/hwdata/
|
|
HWDATA_LICENSE = GPLv2+ or XFree86 1.0 license
|
|
HWDATA_LICENSE_FILES = COPYING LICENSE
|
|
|
|
define HWDATA_INSTALL_TARGET_CMDS
|
|
install -D -m 644 $(@D)/pci.ids $(TARGET_DIR)/usr/share/hwdata/pci.ids
|
|
install -D -m 644 $(@D)/usb.ids $(TARGET_DIR)/usr/share/hwdata/usb.ids
|
|
endef
|
|
|
|
$(eval $(generic-package))
|