Make setpwc depend on kmod-pwc package
[openwrt/svn-archive/archive.git] / utils / pciutils / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=pciutils
12 PKG_VERSION:=2.2.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.kernel.org/pub/software/utils/pciutils/ \
17 ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci
18 PKG_MD5SUM:=c18e2a5f04e9abae5a42439de294f086
19 PKG_CAT:=zcat
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
22 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/pciutils
27 SECTION:=utils
28 CATEGORY:=Utilities
29 TITLE:=Linux PCI Utilities
30 DESCRIPTION:=\
31 This package contains various utilities for inspecting and setting of \\\
32 devices connected to the PCI bus.
33 URL:=http://www.kernel.org/pub/software/utils/pciutils/
34 endef
35
36 define Build/Configure
37 endef
38
39 define Build/Compile
40 $(call Build/Compile/Default, \
41 CFLAGS="$(TARGET_CFLAGS)" \
42 IDSDIR="/usr/share" \
43 HOST="$(GNU_TARGET_NAME)" \
44 )
45 endef
46
47 define Package/pciutils/install
48 install -d -m0755 $(1)/usr/sbin
49 $(CP) $(PKG_BUILD_DIR)/{lspci,setpci} $(1)/usr/sbin/
50 install -d -m0755 $(1)/usr/share
51 $(CP) $(PKG_BUILD_DIR)/pci.ids $(1)/usr/share/
52 endef
53
54 $(eval $(call BuildPackage,pciutils))