[packages] usbutils: Do not automatically update USB IDs on real system
[packages.git] / utils / usbutils / Makefile
1 #
2 # Copyright (C) 2007-2011 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:=usbutils
11 PKG_VERSION:=002
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@KERNEL/linux/utils/usb/usbutils
16 PKG_MD5SUM:=39e38263ba45690fbad41f248f207d32
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/usbutils
23   SECTION:=utils
24   CATEGORY:=Utilities
25   DEPENDS:=+libusb-1.0 +zlib +librt +libpthread
26   TITLE:=USB devices listing utilities
27   URL:=http://www.linux-usb.org/
28 endef
29
30 define Package/usbutils/postinst
31 #!/bin/sh
32 [ -z "$${IPKG_INSTROOT}" ] || \
33 (cd $${IPKG_INSTROOT}/usr/share; $${PKG_ROOT}/usr/sbin/update-usbids.sh ; rm usb.ids.gz.old)
34 exit 0
35 endef
36
37 define Package/usbutils/install
38         $(INSTALL_DIR) $(1)/usr/bin
39         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsusb $(1)/usr/bin/
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/update-usbids.sh $(1)/usr/sbin/
42         $(INSTALL_DIR) $(1)/usr/share
43         $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/usb.ids.gz $(1)/usr/share/
44 endef
45
46 $(eval $(call BuildPackage,usbutils))