mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 06:15:29 +01:00
GNU Tar 1.34
This commit is contained in:
parent
37d720135c
commit
54b7970bf3
7 changed files with 151 additions and 0 deletions
|
|
@ -22,6 +22,8 @@ build automake-1.13.4
|
|||
|
||||
build automake-1.15.1
|
||||
|
||||
build tar-1.34
|
||||
|
||||
build gmp-6.2.1
|
||||
|
||||
echo "Bootstrapping completed."
|
||||
|
|
|
|||
2
sysa/tar-1.34/checksums
Normal file
2
sysa/tar-1.34/checksums
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
d83071067256c4852793db596858b9038511a0ae7a29c52f21165cf8a1882180 /after/bin/tar
|
||||
8e722caf51d93ce42adcc35d0d0c7816ffb8a9642c5096e80d3dcdabcab9498c /after/libexec/rmt
|
||||
103
sysa/tar-1.34/import-gnulib.sh
Executable file
103
sysa/tar-1.34/import-gnulib.sh
Executable file
|
|
@ -0,0 +1,103 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
../gnulib-30820c/gnulib-tool --import --local-dir=gl \
|
||||
--lib=libgnu \
|
||||
--source-base=gnu \
|
||||
--m4-base=m4 \
|
||||
--doc-base=doc \
|
||||
--tests-base=tests \
|
||||
--aux-dir=build-aux \
|
||||
--no-conditional-dependencies \
|
||||
--no-libtool \
|
||||
--macro-prefix=gl \
|
||||
--avoid=lock \
|
||||
alloca \
|
||||
areadlinkat-with-size \
|
||||
argmatch \
|
||||
argp \
|
||||
argp-version-etc \
|
||||
backupfile \
|
||||
closeout \
|
||||
configmake \
|
||||
dirname \
|
||||
error \
|
||||
exclude \
|
||||
exitfail \
|
||||
extern-inline \
|
||||
faccessat \
|
||||
fchmodat \
|
||||
fchownat \
|
||||
fcntl-h \
|
||||
fdopendir \
|
||||
fdutimensat \
|
||||
file-has-acl \
|
||||
fileblocks \
|
||||
fnmatch-gnu \
|
||||
fprintftime \
|
||||
fseeko \
|
||||
fstatat \
|
||||
full-write \
|
||||
futimens \
|
||||
getline \
|
||||
getopt-gnu \
|
||||
getpagesize \
|
||||
gettext \
|
||||
gettime \
|
||||
gitlog-to-changelog \
|
||||
hash \
|
||||
human \
|
||||
inttostr \
|
||||
inttypes \
|
||||
lchown \
|
||||
linkat \
|
||||
localcharset \
|
||||
manywarnings \
|
||||
mkdirat \
|
||||
mkdtemp \
|
||||
mkfifoat \
|
||||
modechange \
|
||||
obstack \
|
||||
openat \
|
||||
parse-datetime \
|
||||
priv-set \
|
||||
progname \
|
||||
quote \
|
||||
quotearg \
|
||||
readlinkat \
|
||||
renameat \
|
||||
root-uid \
|
||||
rpmatch \
|
||||
safe-read \
|
||||
savedir \
|
||||
selinux-at \
|
||||
setenv \
|
||||
snprintf \
|
||||
stat-time \
|
||||
stdbool \
|
||||
stdint \
|
||||
stdopen \
|
||||
stpcpy \
|
||||
strdup-posix \
|
||||
strerror \
|
||||
strnlen \
|
||||
strtoimax \
|
||||
strtol \
|
||||
strtoul \
|
||||
strtoumax \
|
||||
symlinkat \
|
||||
timespec \
|
||||
timespec-sub \
|
||||
unlinkat \
|
||||
unlinkdir \
|
||||
unlocked-io \
|
||||
utimensat \
|
||||
version-etc-fsf \
|
||||
xalloc \
|
||||
xalloc-die \
|
||||
xgetcwd \
|
||||
xstrtoumax \
|
||||
xvasprintf
|
||||
32
sysa/tar-1.34/tar-1.34.sh
Executable file
32
sysa/tar-1.34/tar-1.34.sh
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default_src_prepare
|
||||
|
||||
. ../../import-gnulib.sh
|
||||
|
||||
# We don't have autopoint from gettext yet
|
||||
AUTOPOINT=true autoreconf -fi
|
||||
|
||||
# Remove bison pregenerated file
|
||||
rm gnu/parse-datetime.c
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
FORCE_UNSAFE_CONFIGURE=1 ./configure \
|
||||
--prefix="${PREFIX}" \
|
||||
--disable-nls \
|
||||
--target=i386-unknown-linux-gnu \
|
||||
--host=i386-unknown-linux-gnu \
|
||||
--build=i386-unknown-linux-gnu
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make PREFIX="${PREFIX}" MAKEINFO="true"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make install PREFIX="${PREFIX}" MAKEINFO="true" DESTDIR="${DESTDIR}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue