diff --git a/gnuzip/Makefile b/gnuzip/Makefile new file mode 100644 index 0000000..db5d791 --- /dev/null +++ b/gnuzip/Makefile @@ -0,0 +1,3 @@ +prepare: + git clone https://git.savannah.gnu.org/git/gzip.git + cd gzip diff --git a/gzip/Makefile b/gzip/Makefile new file mode 100644 index 0000000..5511d40 --- /dev/null +++ b/gzip/Makefile @@ -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" diff --git a/m4/Makefile b/m4/Makefile new file mode 100644 index 0000000..ba5bfee --- /dev/null +++ b/m4/Makefile @@ -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 diff --git a/neofetch/neofetch b/neofetch/neofetch index db18bcd..41e3f23 100755 --- a/neofetch/neofetch +++ b/neofetch/neofetch @@ -1554,6 +1554,7 @@ get_packages() { has alps && tot alps showinstalled has butch && tot butch list 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. if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then @@ -6194,10 +6195,10 @@ ${c1} /\\ /.,'` `'.\\ EOF ;; - "Duck Linux Beta"*) + "DLBeta"*) set_color 6 6 7 1 read -rd '' ascii_date <<'EOF' -${c1} --|-- + --|-- | | os EOF diff --git a/xorg/Makefile b/xorg/Makefile index 7452410..2f1f731 100644 --- a/xorg/Makefile +++ b/xorg/Makefile @@ -4,7 +4,7 @@ prepare: PREFIX = $(prefix/) xorg: ./configure \ - --prefix=WITHROOT \ + --prefix=PREFIX \ --localstatedir=/var \ --disable-systemd-logind \ --disable-xwayland \ diff --git a/xztools/Makefile b/xztools/Makefile new file mode 100644 index 0000000..f7c9321 --- /dev/null +++ b/xztools/Makefile @@ -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 + + + diff --git a/zlib/Makefile b/zlib/Makefile new file mode 100644 index 0000000..f1b809f --- /dev/null +++ b/zlib/Makefile @@ -0,0 +1,11 @@ +prepare: + git clone https://github.com/madler/zlib + cd zlib +make: + ./configure + make +install: + make install +uninstall: + make uninstall +