Add hash file and use $(INSTALL) instead of cp for proper mode handling. [Peter: drop /bin/sh handling as we're going to handle it globally] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
544 B
Makefile
19 lines
544 B
Makefile
################################################################################
|
|
#
|
|
# dash
|
|
#
|
|
################################################################################
|
|
|
|
DASH_VERSION = 0.5.8
|
|
DASH_SOURCE = dash_$(DASH_VERSION).orig.tar.gz
|
|
DASH_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/d/dash
|
|
DASH_PATCH = dash_$(DASH_VERSION)-1.diff.gz
|
|
DASH_LICENSE = BSD-3c, GPLv2+ (mksignames.c)
|
|
DASH_LICENSE_FILES = COPYING
|
|
|
|
define DASH_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/src/dash $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|