0cb8bf896d
git-svn-id: svn://svn.openwrt.org/openwrt/packages@30411 3c298f89-4303-0410-b956-a3cf2f4a3e73
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=usb-modeswitch-data
|
|
PKG_VERSION:=20120120
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://www.draisberghof.de/usb_modeswitch/
|
|
PKG_MD5SUM:=c899cc9c71bb35f3ec600b7cd1455c65
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/usb-modeswitch-data
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=usb-modeswitch
|
|
TITLE:=USB ModeSwitch - Dongle configuration database
|
|
URL:=http://packages.debian.org/de/sid/usb-modeswitch-data
|
|
endef
|
|
|
|
define Package/usb-modeswitch-data/description
|
|
Configuration database for usb-modeswitch.
|
|
Contains definitions for many USB devices required to
|
|
autoswitch "flip flop" gear.
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/usb-modeswitch-data/install
|
|
$(INSTALL_DIR) $(1)/etc/usb_modeswitch.d/
|
|
$(CP) $(PKG_BUILD_DIR)/usb_modeswitch.d/* $(1)/etc/usb_modeswitch.d/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,usb-modeswitch-data))
|