MASSIVE REPO UPDATE FOR CORE!

This commit is contained in:
Ohio2 2021-06-29 20:49:46 +02:00
parent 8592f22f8f
commit 38afecc26c
7 changed files with 58 additions and 3 deletions

3
gnuzip/Makefile Normal file
View file

@ -0,0 +1,3 @@
prepare:
git clone https://git.savannah.gnu.org/git/gzip.git
cd gzip

13
gzip/Makefile Normal file
View file

@ -0,0 +1,13 @@
prepare:
git clone https://git.savannah.gnu.org/git/gzip.git/
cd gzip
make:
make CC="${CC:-cc} -static"
install:
install -Dm755 pigz "$1/usr/bin/pigz"
install -Dm755 unpigz "$1/usr/bin/unpigz"
install -Dm644 pigz.1 "$1/usr/share/man/man1/pigz.1"
ln -sf pigz "$1/usr/bin/gzip"
ln -sf pigz "$1/usr/bin/zcat"
ln -sf unpigz "$1/usr/bin/gunzip"
ln -sf pigz.1 "$1/usr/share/man/man1/gzip.1"

11
m4/Makefile Normal file
View file

@ -0,0 +1,11 @@
prepare:
git clone http://git.savannah.gnu.org/r/m4.git
cd m4
make:
export CFLAGS="$CFLAGS -static"
./configure
make
install:
make install
uninstall:
make uninstall

View file

@ -1554,6 +1554,7 @@ get_packages() {
has alps && tot alps showinstalled has alps && tot alps showinstalled
has butch && tot butch list has butch && tot butch list
has swupd && tot swupd bundle-list --quiet has swupd && tot swupd bundle-list --quiet
has spkg && tot spkg database list | wc -l
# Using the dnf package cache is much faster than rpm. # Using the dnf package cache is much faster than rpm.
if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then
@ -6194,10 +6195,10 @@ ${c1} /\\
/.,'` `'.\\ /.,'` `'.\\
EOF EOF
;; ;;
"Duck Linux Beta"*) "DLBeta"*)
set_color 6 6 7 1 set_color 6 6 7 1
read -rd '' ascii_date <<'EOF' read -rd '' ascii_date <<'EOF'
${c1} --|-- --|--
| |
| os | os
EOF EOF

View file

@ -4,7 +4,7 @@ prepare:
PREFIX = $(prefix/) PREFIX = $(prefix/)
xorg: xorg:
./configure \ ./configure \
--prefix=WITHROOT \ --prefix=PREFIX \
--localstatedir=/var \ --localstatedir=/var \
--disable-systemd-logind \ --disable-systemd-logind \
--disable-xwayland \ --disable-xwayland \

16
xztools/Makefile Normal file
View file

@ -0,0 +1,16 @@
prepare:
PREFIX = $(prefix/)
git clone https://git.tukaani.org/xz.git
cd xz
make:
./configure \
--prefix=PREFIX \
--disable-nls
make
install:
make install
uninstall:
make uninstall

11
zlib/Makefile Normal file
View file

@ -0,0 +1,11 @@
prepare:
git clone https://github.com/madler/zlib
cd zlib
make:
./configure
make
install:
make install
uninstall:
make uninstall