14 lines
309 B
Text
Executable file
14 lines
309 B
Text
Executable file
name=bzip2
|
|
version=1.0.8
|
|
source=(https://www.sourceware.org/pub/bzip2/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make -f Makefile-libbz2_so
|
|
make clean
|
|
make
|
|
make PREFIX=/tools install
|
|
cp -v bzip2-shared /tools/bin/bzip2
|
|
cp -av libbz2.so* /tools/lib
|
|
ln -sv libbz2.so.1.0 /tools/lib/libbz2.so
|
|
}
|