Files
packages/utils/hwdata/Makefile
T
Alexandru Ardelean 3695f1dae5 hwdata: update to 0.407
Refresh the hardware database with the latest USB, PCI and PnP IDs.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-05-21 20:28:51 +03:00

70 lines
1.8 KiB
Makefile

#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=hwdata
PKG_VERSION:=0.407
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/vcrhonek/hwdata/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=6a88f6f5cb510fbfaa9c49488348b7fcd7aa209b0a331f24dfebb1c8c339568b
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING LICENSE
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/pciids
SECTION:=utils
CATEGORY:=Utilities
TITLE:=PCI ID list
URL:=https://github.com/vcrhonek/hwdata
endef
define Package/usbids
SECTION:=utils
CATEGORY:=Utilities
TITLE:=USB ID list
URL:=https://github.com/vcrhonek/hwdata
endef
define Package/pnpids
SECTION:=utils
CATEGORY:=Utilities
TITLE:=PnP ID list
URL:=https://github.com/vcrhonek/hwdata
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/share/hwdata
$(CP) $(PKG_INSTALL_DIR)/usr/share/hwdata/* $(1)/usr/share/hwdata
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/*/pkgconfig/hwdata.pc $(1)/usr/lib/pkgconfig
endef
define Package/pciids/install
$(INSTALL_DIR) $(1)/usr/share/hwdata
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/hwdata/pci.ids $(1)/usr/share/hwdata
endef
define Package/pnpids/install
$(INSTALL_DIR) $(1)/usr/share/hwdata
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/hwdata/pnp.ids $(1)/usr/share/hwdata
endef
define Package/usbids/install
$(INSTALL_DIR) $(1)/usr/share/hwdata
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/hwdata/usb.ids $(1)/usr/share/hwdata
endef
$(eval $(call BuildPackage,pciids))
$(eval $(call BuildPackage,pnpids))
$(eval $(call BuildPackage,usbids))