You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2007-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=pciutils
  9. PKG_VERSION:=3.2.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils
  13. PKG_MD5SUM:=425b1acad6854cc2bbb06ac8e48e76fc
  14. PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
  15. PKG_LICENSE:=GPL-2.0
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. define Package/pciutils
  20. SECTION:=utils
  21. CATEGORY:=Utilities
  22. TITLE:=Linux PCI Utilities
  23. URL:=http://mj.ucw.cz/pciutils.shtml
  24. DEPENDS:=+zlib
  25. endef
  26. define Package/pciutils/description
  27. contains collection of programs for inspecting and manipulating configuration
  28. of PCI devices
  29. endef
  30. define Package/pciutils/postinst
  31. #!/bin/sh
  32. [ -z "$${IPKG_INSTROOT}" ] || \
  33. (cd $${PKG_ROOT}/usr/share; $${PKG_ROOT}/usr/sbin/update-pciids; rm pci.ids.gz.old)
  34. exit 0
  35. endef
  36. MAKE_FLAGS += \
  37. CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
  38. PREFIX="/usr" \
  39. HOST="$(GNU_TARGET_NAME)" \
  40. ZLIB="yes" \
  41. ifneq ($(CONFIG_USE_EGLIBC),)
  42. TARGET_LDFLAGS += -lresolv
  43. endif
  44. define Build/InstallDev
  45. $(INSTALL_DIR) $(1)/usr/lib
  46. $(CP) $(PKG_BUILD_DIR)/lib/libpci.a $(1)/usr/lib
  47. $(INSTALL_DIR) $(1)/usr/include/pci
  48. $(CP) $(foreach i,pci.h config.h header.h types.h, \
  49. $(PKG_BUILD_DIR)/lib/$(i)) $(1)/usr/include/pci
  50. endef
  51. define Package/pciutils/install
  52. $(INSTALL_DIR) $(1)/usr/sbin
  53. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{lspci,setpci,update-pciids} $(1)/usr/sbin/
  54. $(INSTALL_DIR) $(1)/usr/share
  55. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/pci.ids.gz $(1)/usr/share/
  56. endef
  57. $(eval $(call BuildPackage,pciutils))