Add ed 1.4.

This commit is contained in:
Andrius Štikonas 2023-02-27 09:41:09 +08:00
parent 5cc4d959b4
commit b8446054f2
5 changed files with 26 additions and 0 deletions

View File

@ -620,6 +620,12 @@ curl 7.83.0
``curl`` is used to download files using various protocols including HTTP and HTTPS.
However, this first build does not support encrypted HTTPS yet.
ed 1.4
======
``ed`` is a very basic line editor. This is the last version that is not distributed
in ``.tar.lz`` format. ``ed`` is used by ``bc`` build scripts.
kexec-tools 2.0.22
==================

View File

@ -39,6 +39,7 @@ d6a43ad9a56f21407e72820e0bafabd7b4bb3def9d9ba717203964fa2d500a00 curl-7.83.0_1.
f1a17f3d1c65140a6d3043ecb710e5fffe9c019cb3d2eaa982be03706876e534 diffutils-2.7_0.tar.bz2
de6d9df33107ae63b8e0f30902fe9d00e42f78f44a60b256bb0b3c82ff75bd45 dist-3.5-236_0.tar.bz2
67cccd627c4f940214907c55d0a78c3b1abb996729298e2c41f7f83776e5dd0f e2fsprogs-1.45.7_0.tar.bz2
30998009d585c8f83ec70db2fcecc4fffcd17d7ddcd5e282a04fac005e680880 ed-1.4_0.tar.bz2
bc381a028836d7ba2b679d4c41167180f23d3d8a4720453534be9500185f05f9 file-5.44_0.tar.bz2
8a0405a66c09c6e1647078c919ae54948f069632214c8430af7adbdb176f62e2 findutils-4.2.33_0.tar.bz2
3c85ce52e37c313d699a21cc741d24e808048461b105f58445a645a54ea55436 flex-2.5.11_0.tar.bz2

16
sysa/ed-1.4/ed-1.4.sh Executable file
View File

@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: © 2023 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm doc/ed.info
}
src_configure() {
./configure --prefix="${PREFIX}" \
--build=i386-unknown-linux-musl
}
src_install() {
install -m 755 -D ed ${DESTDIR}/usr/bin/ed
}

1
sysa/ed-1.4/sources Normal file
View File

@ -0,0 +1 @@
https://mirrors.kernel.org/gnu/ed/ed-1.4.tar.gz db36da85ee1a9d8bafb4b041bd4c8c11becba0c43ec446353b67045de1634fda

View File

@ -228,6 +228,8 @@ build make-3.82
build curl-7.83.0
build ed-1.4
# Clear up some RAM space
grep '^build' "${SOURCES}/run.sh" | sed "s/build //" | sed "s/ .*$//" | while read -r p ; do
rm -rf "${SOURCES:?}/${p:?}"