From 75d3790f607f7be2c8f24b8e03eebd743d6e8fbe Mon Sep 17 00:00:00 2001 From: hippoz Date: Wed, 30 Jun 2021 00:32:00 +0300 Subject: [PATCH] [new package] "bzip2" --- bzip2/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bzip2/Makefile diff --git a/bzip2/Makefile b/bzip2/Makefile new file mode 100644 index 0000000..28519ee --- /dev/null +++ b/bzip2/Makefile @@ -0,0 +1,14 @@ +prepare: + git clone https://www.sourceware.org/pub/bzip2/bzip2-latest.tar.gz bzip2 + cd bzip2 +make: + make -f Makefile-libbz2_so + make clean + make +install: + make PREFIX=${PREFIX}/tools install + cp -v bzip2-shared ${PREFIX}/tools/bin/bzip2 + cp -av libbz2.so* ${PREFIX}/tools/lib + ln -sv libbz2.so.1.0 ${PREFIX}/tools/lib/libbz2.so +uninstall: + make uninstall