d3e4db4e34
Remove 'usb_modeswitch-makefile.patch' because it was merged upstream. This package contains a dispatcher (wrapper) that can be installed as Tcl script or as binary without further dependency. If Tcl is selected and the binary interpreter is installed (BR2_PACKAGE_TCL && !BR2_PACKAGE_TCL_SHLIB_ONLY) the dispatcher will be installed as Tcl script otherwise as binary. Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# usb_modeswitch
|
|
#
|
|
################################################################################
|
|
|
|
USB_MODESWITCH_VERSION = 1.2.6
|
|
USB_MODESWITCH_SOURCE = usb-modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
|
|
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
|
|
USB_MODESWITCH_DEPENDENCIES = libusb-compat
|
|
USB_MODESWITCH_LICENSE = GPLv2+
|
|
USB_MODESWITCH_LICENSE_FILES = COPYING
|
|
|
|
USB_MODESWITCH_BUILD_TARGETS = static
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-static
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL)$(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
|
USB_MODESWITCH_DEPENDENCIES += tcl
|
|
USB_MODESWITCH_BUILD_TARGETS = script
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-script
|
|
endif
|
|
|
|
define USB_MODESWITCH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -Wall -I." \
|
|
-C $(@D) $(USB_MODESWITCH_BUILD_TARGETS)
|
|
endef
|
|
|
|
define USB_MODESWITCH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
-C $(@D) $(USB_MODESWITCH_INSTALL_TARGETS)
|
|
endef
|
|
|
|
|
|
define USB_MODESWITCH_CLEAN_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) clean
|
|
endef
|
|
|
|
define USB_MODESWITCH_UNINSTALL_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) uninstall
|
|
endef
|
|
|
|
$(eval $(generic-package))
|