diff options
| author | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
|---|---|---|
| committer | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
| commit | ddd8e1a8fab2ac39396282a7c09ddf6eca219613 (patch) | |
| tree | 12796519575126d60e06d02e9eab68856229cf58 /repos/core/bzip2 | |
| parent | b5a8a6c29e40f786ceb808c0b95f01c4251111d1 (diff) | |
| download | alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.tar.gz alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.zip | |
clang repos updated
Diffstat (limited to 'repos/core/bzip2')
| -rwxr-xr-x | repos/core/bzip2/.checksum | 1 | ||||
| -rwxr-xr-x | repos/core/bzip2/.files | 30 | ||||
| -rwxr-xr-x | repos/core/bzip2/abuild | 28 |
3 files changed, 0 insertions, 59 deletions
diff --git a/repos/core/bzip2/.checksum b/repos/core/bzip2/.checksum deleted file mode 100755 index 17aca4f1..00000000 --- a/repos/core/bzip2/.checksum +++ /dev/null @@ -1 +0,0 @@ -97af3f520629c65fe41292f77e6ca798fe594d7987bfb2aebe7c6fcdc7ab5ed2 bzip2-1.0.8.tar.gz diff --git a/repos/core/bzip2/.files b/repos/core/bzip2/.files deleted file mode 100755 index 60147284..00000000 --- a/repos/core/bzip2/.files +++ /dev/null @@ -1,30 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/bunzip2 -> bzip2 -lrwxrwxrwx root/root usr/bin/bzcat -> bzip2 -lrwxrwxrwx root/root usr/bin/bzcmp -> bzdiff --rwxr-xr-x root/root usr/bin/bzdiff -lrwxrwxrwx root/root usr/bin/bzegrep -> bzgrep -lrwxrwxrwx root/root usr/bin/bzfgrep -> bzgrep --rwxr-xr-x root/root usr/bin/bzgrep --rwxr-xr-x root/root usr/bin/bzip2 --rwxr-xr-x root/root usr/bin/bzip2recover -lrwxrwxrwx root/root usr/bin/bzless -> bzmore --rwxr-xr-x root/root usr/bin/bzmore -drwxr-xr-x root/root usr/include/ --rw-r--r-- root/root usr/include/bzlib.h -drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libbz2.so -> libbz2.so.1.0.8 -lrwxrwxrwx root/root usr/lib/libbz2.so.1.0 -> libbz2.so.1.0.8 --rwxr-xr-x root/root usr/lib/libbz2.so.1.0.8 -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/bzcmp.1.gz --rw-r--r-- root/root usr/share/man/man1/bzdiff.1.gz --rw-r--r-- root/root usr/share/man/man1/bzegrep.1.gz --rw-r--r-- root/root usr/share/man/man1/bzfgrep.1.gz --rw-r--r-- root/root usr/share/man/man1/bzgrep.1.gz --rw-r--r-- root/root usr/share/man/man1/bzip2.1.gz --rw-r--r-- root/root usr/share/man/man1/bzless.1.gz --rw-r--r-- root/root usr/share/man/man1/bzmore.1.gz diff --git a/repos/core/bzip2/abuild b/repos/core/bzip2/abuild deleted file mode 100755 index 1f523e04..00000000 --- a/repos/core/bzip2/abuild +++ /dev/null @@ -1,28 +0,0 @@ -name=bzip2 -version=1.0.8 -release=1 -source="https://www.sourceware.org/pub/$name/$name-$version.tar.gz" - -build() { - sed -i 's@\(ln -s -f \)$(PREFIX)/bin/@\1@' Makefile - sed -i "s@(PREFIX)/man@(PREFIX)/share/man@g" Makefile - - [ "${CFLAGS}" ] && sed -i "s|-O2|${CFLAGS}|g" Makefile - [ "${CFLAGS}" ] && sed -i "s|-O2|${CFLAGS}|g" Makefile-libbz2_so - - make -f Makefile-libbz2_so - mkdir -p $PKG/usr/lib - install libbz2.so.$version $PKG/usr/lib - ln -s libbz2.so.$version $PKG/usr/lib/libbz2.so - ln -s libbz2.so.$version $PKG/usr/lib/libbz2.so.1.0 - - make clean - make - make PREFIX=$PKG/usr install - - cp -v bzip2-shared $PKG/usr/bin/bzip2 - ln -sf bzip2 $PKG/usr/bin/bzcat - ln -sf bzip2 $PKG/usr/bin/bunzip2 - - install -Dm 0644 bzlib.h $PKG/usr/include/bzlib.h -} |