c1e3d5d2a1
Changes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * No need to strip * Target installation is the default * No installation to staging is the default * Remove DASH_BINARY/DASH_SOURCE variables * Fix minor mistakes * Simplify: no need to pass CC/CC_FOR_BUILD Signed-off-by: cmchao <cmchao@gmail.com> merge dash
21 lines
512 B
Makefile
21 lines
512 B
Makefile
#############################################################
|
|
#
|
|
# dash
|
|
#
|
|
#############################################################
|
|
DASH_VERSION:=0.5.5.1
|
|
DASH_SOURCE:=dash_$(DASH_VERSION).orig.tar.gz
|
|
DASH_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/d/dash
|
|
DASH_PATCH:=dash_$(DASH_VERSION)-6.diff.gz
|
|
|
|
define DASH_INSTALL_TARGET_CMDS
|
|
cp -a $(@D)/src/dash $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
define DASH_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
rm -f $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS,package,dash))
|