337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
731 B
Makefile
33 lines
731 B
Makefile
################################################################################
|
|
#
|
|
# ed
|
|
#
|
|
################################################################################
|
|
|
|
ED_VERSION = 1.14.2
|
|
ED_SITE = $(BR2_GNU_MIRROR)/ed
|
|
ED_SOURCE = ed-$(ED_VERSION).tar.lz
|
|
ED_CONF_OPTS = \
|
|
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)"
|
|
ED_LICENSE = GPL-3.0+
|
|
ED_LICENSE_FILES = COPYING
|
|
|
|
define ED_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_MAKE_ENV) ./configure \
|
|
--prefix=/usr \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
)
|
|
endef
|
|
|
|
define ED_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define ED_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|