e2a7822415
The check-package script when ran gave warnings on only using one space before backslashes on all of these makefiles. This patch cleans up all warnings related to the one space before backslashes rule in the make files in the package directory. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# usbmount
|
|
#
|
|
################################################################################
|
|
|
|
USBMOUNT_VERSION = 0.0.22
|
|
USBMOUNT_SOURCE = usbmount_$(USBMOUNT_VERSION).tar.gz
|
|
USBMOUNT_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/u/usbmount
|
|
USBMOUNT_DEPENDENCIES = udev lockfile-progs
|
|
USBMOUNT_LICENSE = BSD-2-Clause
|
|
USBMOUNT_LICENSE_FILES = debian/copyright
|
|
|
|
define USBMOUNT_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/usbmount $(TARGET_DIR)/usr/share/usbmount/usbmount
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/00_create_model_symlink \
|
|
$(TARGET_DIR)/etc/usbmount/mount.d/00_create_model_symlink
|
|
$(INSTALL) -m 0755 -D $(@D)/00_remove_model_symlink \
|
|
$(TARGET_DIR)/etc/usbmount/umount.d/00_remove_model_symlink
|
|
|
|
$(INSTALL) -m 0644 -D $(@D)/usbmount.rules $(TARGET_DIR)/lib/udev/rules.d/usbmount.rules
|
|
$(INSTALL) -m 0644 -D $(@D)/usbmount.conf $(TARGET_DIR)/etc/usbmount/usbmount.conf
|
|
|
|
mkdir -p $(addprefix $(TARGET_DIR)/media/usb,0 1 2 3 4 5 6 7)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|