Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 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/2013-06/msg00001.html
md5 565b6d1d5a9a8816b9b304fc4ed9405d ed-1.9.tar.gz

View File

@@ -0,0 +1,31 @@
################################################################################
#
# ed
#
################################################################################
ED_VERSION = 1.9
ED_SITE = $(BR2_GNU_MIRROR)/ed
ED_CONF_OPTS = \
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)"
ED_LICENSE = GPLv3+
ED_LICENSE_FILES = COPYING
define ED_CONFIGURE_CMDS
(cd $(@D); \
./configure \
--prefix=/usr \
$(TARGET_CONFIGURE_OPTS) \
)
endef
define ED_BUILD_CMDS
$(MAKE) -C $(@D)
endef
define ED_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
endef
$(eval $(generic-package))