mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 14:25:24 +01:00
Add sed 4.8
This commit is contained in:
parent
7588bddd8e
commit
997cd15453
7 changed files with 104 additions and 0 deletions
66
sysc/sed-4.8/import-gnulib.sh
Executable file
66
sysc/sed-4.8/import-gnulib.sh
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
../gnulib-d279bc/gnulib-tool --import --local-dir=gl \
|
||||
--lib=libsed \
|
||||
--source-base=lib \
|
||||
--m4-base=m4 \
|
||||
--doc-base=doc \
|
||||
--tests-base=gnulib-tests \
|
||||
--aux-dir=build-aux \
|
||||
--with-tests \
|
||||
--makefile-name=gnulib.mk \
|
||||
--no-conditional-dependencies \
|
||||
--no-libtool \
|
||||
--macro-prefix=gl \
|
||||
--avoid=lock-tests \
|
||||
acl \
|
||||
alloca \
|
||||
binary-io \
|
||||
btowc \
|
||||
c-ctype \
|
||||
closeout \
|
||||
dfa \
|
||||
extensions \
|
||||
fdl \
|
||||
fwriting \
|
||||
getdelim \
|
||||
getopt \
|
||||
gettext-h \
|
||||
git-version-gen \
|
||||
gitlog-to-changelog \
|
||||
ignore-value \
|
||||
localcharset \
|
||||
manywarnings \
|
||||
mbrlen \
|
||||
mbrtowc \
|
||||
mbsinit \
|
||||
memchr \
|
||||
memrchr \
|
||||
mkostemp \
|
||||
non-recursive-gnulib-prefix-hack \
|
||||
obstack \
|
||||
perl \
|
||||
progname \
|
||||
readme-release \
|
||||
regex \
|
||||
rename \
|
||||
selinux-h \
|
||||
ssize_t \
|
||||
stat-macros \
|
||||
stdalign \
|
||||
stdbool \
|
||||
strerror \
|
||||
strverscmp \
|
||||
unlocked-io \
|
||||
update-copyright \
|
||||
verify \
|
||||
version-etc-fsf \
|
||||
wcrtomb \
|
||||
wctob \
|
||||
xalloc
|
||||
|
||||
./build-aux/prefix-gnulib-mk --lib-name=libsed lib/gnulib.mk
|
||||
23
sysc/sed-4.8/sed-4.8.sh
Executable file
23
sysc/sed-4.8/sed-4.8.sh
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
urls="https://mirrors.kernel.org/gnu/sed/sed-4.8.tar.xz
|
||||
http://git.savannah.gnu.org/cgit/gnulib.git/snapshot/gnulib-d279bc.tar.gz"
|
||||
|
||||
src_prepare() {
|
||||
rm configure
|
||||
find . -name 'Makefile.in' -delete
|
||||
|
||||
../../import-gnulib.sh
|
||||
|
||||
autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
GL_GENERATE_ALLOCA_H_TRUE=0 LDFLAGS="-static" ./configure --prefix="${PREFIX}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue