33b6fd462a
This fixes the build of usb-modeswitch-data since the older version was no longer available at the specified URL. Signed-off-by: Ithamar R. Adema <ithamar.adema@team-embedded.nl> git-svn-id: svn://svn.openwrt.org/openwrt/packages@22488 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:=20100707
|
|
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:=d1fcc283c64a0877cdcac9cd682052f9
|
|
|
|
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))
|