a9e367fe39b5430320cbf98a717e9e6ec38cd499
[openwrt/svn-archive/archive.git] / utils / pciutils / Makefile
1 #
2 # Copyright (C) 2007-2009 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.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@KERNEL/software/utils/pciutils \
16 ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
17 PKG_MD5SUM:=46387fd7a18c33fbb5311fdb3ab9ea12
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/pciutils
22 SECTION:=utils
23 CATEGORY:=Utilities
24 TITLE:=Linux PCI Utilities
25 URL:=http://mj.ucw.cz/pciutils.shtml
26 endef
27
28 define Package/pciutils/description
29 This package contains various utilities for inspecting and setting of
30 devices connected to the PCI bus.
31 endef
32
33 define Package/pciutils/postinst
34 #!/bin/sh
35 $${IPKG_INSTROOT}/usr/sbin/update-pciids.sh
36 exit 0
37 endef
38
39 MAKE_FLAGS += \
40 CFLAGS="$(TARGET_CFLAGS)" \
41 IDSDIR="/usr/share" \
42 HOST="$(GNU_TARGET_NAME)" \
43 ZLIB="no" \
44
45 define Build/InstallDev
46 $(INSTALL_DIR) $(1)/usr/lib
47 $(CP) $(PKG_BUILD_DIR)/lib/libpci.a $(1)/usr/lib
48 $(INSTALL_DIR) $(1)/usr/include/pci
49 $(CP) $(foreach i,pci.h config.h header.h types.h, \
50 $(PKG_BUILD_DIR)/lib/$(i)) $(1)/usr/include/pci
51 endef
52
53 define Package/pciutils/install
54 $(INSTALL_DIR) $(1)/usr/sbin
55 $(CP) $(PKG_BUILD_DIR)/{lspci,setpci,update-pciids.sh} $(1)/usr/sbin/
56 $(INSTALL_DIR) $(1)/usr/share
57 $(CP) $(PKG_BUILD_DIR)/pci.ids $(1)/usr/share/
58 endef
59
60 $(eval $(call BuildPackage,pciutils))