[packages] pciutils: update to 3.1.5, remove the gzip-only mirror, switch to using...
[openwrt/svn-archive/archive.git] / utils / pciutils / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pciutils
11 PKG_VERSION:=3.1.5
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils
16 PKG_MD5SUM:=7ccf8ae2353033158652bdca4e4aad0a
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/pciutils
23 SECTION:=utils
24 CATEGORY:=Utilities
25 TITLE:=Linux PCI Utilities
26 URL:=http://mj.ucw.cz/pciutils.shtml
27 DEPENDS:=+zlib
28 endef
29
30 define Package/pciutils/description
31 This package contains various utilities for inspecting and setting of
32 devices connected to the PCI bus.
33 endef
34
35 define Package/pciutils/postinst
36 #!/bin/sh
37 $${IPKG_INSTROOT}/usr/sbin/update-pciids
38 endef
39
40 MAKE_FLAGS += \
41 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
42 PREFIX="/usr" \
43 HOST="$(GNU_TARGET_NAME)" \
44 ZLIB="yes" \
45
46 define Build/InstallDev
47 $(INSTALL_DIR) $(1)/usr/lib
48 $(CP) $(PKG_BUILD_DIR)/lib/libpci.a $(1)/usr/lib
49 $(INSTALL_DIR) $(1)/usr/include/pci
50 $(CP) $(foreach i,pci.h config.h header.h types.h, \
51 $(PKG_BUILD_DIR)/lib/$(i)) $(1)/usr/include/pci
52 endef
53
54 define Package/pciutils/install
55 $(INSTALL_DIR) $(1)/usr/sbin
56 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{lspci,setpci,update-pciids} $(1)/usr/sbin/
57 $(INSTALL_DIR) $(1)/usr/share
58 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/pci.ids.gz $(1)/usr/share/
59 endef
60
61 $(eval $(call BuildPackage,pciutils))