This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

29
package/ed/ed.mk Normal file
View File

@@ -0,0 +1,29 @@
################################################################################
#
# ed
#
################################################################################
ED_VERSION = 1.15
ED_SITE = $(BR2_GNU_MIRROR)/ed
ED_SOURCE = ed-$(ED_VERSION).tar.lz
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))