4e4739ca5a
license has been switched back to GPL-2.0+: https://lists.gnu.org/archive/html/bug-ed/2022-02/msg00002.html https://lists.gnu.org/archive/html/bug-ed/2022-02/msg00000.html Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
31 lines
659 B
Makefile
31 lines
659 B
Makefile
################################################################################
|
|
#
|
|
# ed
|
|
#
|
|
################################################################################
|
|
|
|
ED_VERSION = 1.18
|
|
ED_SITE = $(BR2_GNU_MIRROR)/ed
|
|
ED_SOURCE = ed-$(ED_VERSION).tar.lz
|
|
ED_LICENSE = GPL-2.0+
|
|
ED_LICENSE_FILES = COPYING
|
|
ED_CPE_ID_VENDOR = gnu
|
|
|
|
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))
|