+include $(INCLUDE_DIR)/package.mk
+
+define Package/pciutils
+ SECTION:=utils
+ CATEGORY:=Utilities
+ TITLE:=Linux PCI Utilities
+ DESCRIPTION:=\
+ This package contains various utilities for inspecting and setting of \\\
+ devices connected to the PCI bus.
+ URL:=http://www.kernel.org/pub/software/utils/pciutils/
+endef
+
+define Package/pciutils/postinst
+#!/bin/sh
+$${IPKG_INSTROOT}/usr/sbin/update-pciids.sh
+endef
+
+define Build/Configure
+endef
+
+define Build/Compile
+ $(call Build/Compile/Default, \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ IDSDIR="/usr/share" \
+ HOST="$(GNU_TARGET_NAME)" \
+ )
+endef