e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
631 B
Makefile
28 lines
631 B
Makefile
#############################################################
|
|
#
|
|
# sredird
|
|
#
|
|
#############################################################
|
|
|
|
SREDIRD_VERSION = 2.2.1-1.1
|
|
SREDIRD_SOURCE = sredird_$(SREDIRD_VERSION).tar.gz
|
|
SREDIRD_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sredird
|
|
|
|
define SREDIRD_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define SREDIRD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/sredird $(TARGET_DIR)/usr/sbin/sredird
|
|
endef
|
|
|
|
define SREDIRD_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/sredird
|
|
endef
|
|
|
|
define SREDIRD_CLEAN_CMDS
|
|
rm -f $(@D)/sredird
|
|
endef
|
|
|
|
$(eval $(generic-package))
|