mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-06 11:25:23 +01:00
Add sed 4.8
This commit is contained in:
parent
7588bddd8e
commit
997cd15453
7 changed files with 104 additions and 0 deletions
|
|
@ -48,6 +48,7 @@ ac610bda97abe0d9f6b7c963255a11dcb196c25e337c61f94e4778d632f1d8fd patch-2.7.6.ta
|
|||
1d179b41283f12ad83f9758430f6ddc49bdf20db5c396aeae7e51ebb4e4afd29 perl_5.32.1.orig-regen-configure.tar.gz
|
||||
57cc47c735c8300a8ce2fa0643507b44c4ae59012bfdad0121313db639e02309 perl-5.32.1.tar.xz
|
||||
6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591 pkg-config-0.29.2.tar.gz
|
||||
f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633 sed-4.8.tar.xz
|
||||
63bebd26879c5e1eea4352f0d03c991f966aeb3ddeb3c7445c902568d5411d28 tar-1.34.tar.xz
|
||||
988403c1542d15ad044600b909997ba3079b10e03224c61188117f3676b02caa texinfo-6.7.tar.xz
|
||||
f4a245b94124b377d8b49646bf421f9155d36aa7614b6ebf83705d3ffc76eaad which-2.21.tar.gz
|
||||
|
|
|
|||
|
|
@ -102,6 +102,8 @@ build which-2.21
|
|||
|
||||
build grep-3.7
|
||||
|
||||
build sed-4.8
|
||||
|
||||
if [ "$FORCE_TIMESTAMPS" = True ] ; then
|
||||
echo 'Forcing all files timestamps to be 0 unix time.'
|
||||
canonicalise_all_files_timestamp
|
||||
|
|
|
|||
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