Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_ED
bool "ed"
help
A line-oriented text editor. Used to create, display, modify,
and otherwise manipulate text files. Often used in scripts
rather than invoked directly.
http://www.gnu.org/software/ed/

View File

@@ -0,0 +1,2 @@
# From http://lists.gnu.org/archive/html/bug-ed/2017-02/msg00005.html
sha256 f57962ba930d70d02fc71d6be5c5f2346b16992a455ab9c43be7061dec9810db ed-1.14.2.tar.lz

View File

@@ -0,0 +1,32 @@
################################################################################
#
# 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))