usb_modeswitch build system is just a simple Makefile, so the GENTARGETS infrastructure is more appropriate than the AUTOTARGETS infrastructure. The build system is slightly fixed through a small patch, that replaces the previous "nostrip" patch. The latest version of usb_modeswitch is 1.1.1, but it now relies on udev and requires TCL to operate. Someone actually using usb_modeswitch would probably be at a better place to do this version bump. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
782 B
Makefile
27 lines
782 B
Makefile
#############################################################
|
|
#
|
|
# usb_modeswitch
|
|
#
|
|
#############################################################
|
|
|
|
USB_MODESWITCH_VERSION = 1.0.7
|
|
USB_MODESWITCH_SOURCE = usb_modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
|
|
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
|
|
USB_MODESWITCH_DEPENDENCIES = libusb-compat
|
|
|
|
define USB_MODESWITCH_BUILD_CMDS
|
|
rm $(@D)/usb_modeswitch
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define USB_MODESWITCH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define USB_MODESWITCH_CLEAN_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/usb_modeswitch
|
|
rm -f $(TARGET_DIR)/etc/usb_modeswitch.conf
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS,package,usb_modeswitch))
|