kumquat-buildroot/package/usbmount/usbmount.mk

23 lines
744 B
Makefile
Raw Normal View History

2007-01-14 04:31:43 +01:00
#############################################################
#
# usbmount
#
#############################################################
2007-02-12 11:14:12 +01:00
USBMOUNT_VERSION=0.0.14.1
USBMOUNT_SOURCE:=usbmount_$(USBMOUNT_VERSION).tar.gz
2007-01-14 04:31:43 +01:00
USBMOUNT_SITE:=http://usbmount.alioth.debian.org/package/
USBMOUNT_DEPENDENCIES = udev lockfile-progs
2007-01-14 04:31:43 +01:00
define USBMOUNT_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/usbmount $(TARGET_DIR)/sbin/usbmount
2007-08-22 11:56:41 +02:00
@if [ ! -f $(TARGET_DIR)/etc/usbmount/usbmount.conf ]; then \
$(INSTALL) -m 0644 -D $(@D)/usbmount.conf $(TARGET_DIR)/etc/usbmount/usbmount.conf; \
fi
endef
2007-01-14 04:31:43 +01:00
define USBMOUNT_UNINSTALL_TARGET_CMDS
rm -rf $(TARGET_DIR)/etc/usbmount $(TARGET_DIR)/sbin/usbmount
endef
2007-01-14 04:31:43 +01:00
$(eval $(call GENTARGETS,package,usbmount))