thepeople 1d36d44150 account for more sdcc variants
git-svn-id: svn://svn.openwrt.org/openwrt/packages@26475 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-04-04 20:46:25 +00:00

66 lines
1.9 KiB
Makefile

#
# Copyright (C) 2006-2009 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:=firmwarehotplug
PKG_VERSION:=0.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/linux-hotplug
PKG_MD5SUM:=e5cf352b172f498e27b160167b981f24
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
# workaround for fedora sdcc naming changes
ifneq ($(wildcard /usr/libexec/sdcc),)
export PATH:=$(PATH):/usr/libexec
endif
define Package/firmwarehotplug
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=@USB_SUPPORT +fxload
TITLE:=Hotplug firmware for EZ-USB microcontrollers
URL:=http://linux-hotplug.sourceforge.net/
endef
MAKE_PATH:=ezusb/midi/original
MAKE_FLAGS+=\
OPT="$(TARGET_CFLAGS)"
define Package/firmwarehotplug/install
$(INSTALL_DIR) $(1)/etc/hotplug.d/usb
install -m755 $(PKG_BUILD_DIR)/ezusb/midi/original/Hotplug/ezusbmidi $(1)/etc/hotplug.d/usb
install -m644 $(PKG_BUILD_DIR)/ezusb/midi/original/Hotplug/ezusbmidi.usermap $(1)/etc/hotplug.d
$(INSTALL_DIR) $(1)/usr/share/usb/ezusbmidi
install -m644 $(PKG_BUILD_DIR)/ezusb/midi/original/ezusbmidi1x1.ihx $(1)/usr/share/usb/ezusbmidi
install -m644 $(PKG_BUILD_DIR)/ezusb/midi/original/ezusbmidi2x2.ihx $(1)/usr/share/usb/ezusbmidi
endef
define Require/working-sdcc
sdcc -v 2>&1 | awk '($$$$1 == "SDCC") && ($$$$3 ~ "mcs51/gbz80/z80" && $$$$3 ~ "/ds390/pic16/pic14/TININative") { print "ok" }' | grep ok > /dev/null
endef
$(eval $(call RequireCommand,sdcc, \
$(PKG_NAME) requires the SDCC Cross Compiler (sdcc). \
))
$(eval $(call Require,working-sdcc, \
$(PKG_NAME) requires a SDCC Cross Compiler (sdcc) that supports the following targets : \
mcs51/gbz80/z80/avr/ds390/pic16/pic14/TININative/xa51/ds400/hc08. You might consider \
installing the non-free version. \
))
$(eval $(call BuildPackage,firmwarehotplug))