108f3b4afa
git-svn-id: svn://svn.openwrt.org/openwrt/packages@22064 3c298f89-4303-0410-b956-a3cf2f4a3e73
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2010 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:=20100623
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.bz2
|
|
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/u/usb-modeswitch-data
|
|
PKG_MD5SUM:=89ff3650f36303265213ee7ab86e2af3
|
|
|
|
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))
|