[new package] "bzip2"

This commit is contained in:
hippoz 2021-06-30 00:32:00 +03:00
parent 30bd9ba17e
commit 75d3790f60

14
bzip2/Makefile Normal file
View file

@ -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