2020-05-07 09:18:10 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
# plzip is the only thing that will ever require
|
2020-05-17 01:39:05 -06:00
|
|
|
# this library. Let's simply build it and statically
|
2020-05-07 09:18:10 -06:00
|
|
|
# compile plzip.
|
|
|
|
(cd lzlib; ./configure; make)
|
|
|
|
|
2021-07-14 03:40:14 -06:00
|
|
|
# Fix build in libc++ environment.
|
2021-07-17 21:52:20 -06:00
|
|
|
case $("$CC" -print-file-name=libc++.a) in */*)
|
2021-07-14 03:40:14 -06:00
|
|
|
CXXFLAGS="$CXXFLAGS -lunwind -lc++abi"
|
|
|
|
esac
|
|
|
|
|
2020-05-07 09:18:10 -06:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
CXXFLAGS="$CXXFLAGS -static -L$PWD/lzlib -I$PWD/lzlib"
|
|
|
|
|
|
|
|
make
|
2021-07-17 21:06:20 -06:00
|
|
|
make install
|
2020-05-07 09:18:10 -06:00
|
|
|
|
|
|
|
# Create the symlink for compatibility. We're using
|
|
|
|
# a multi-threaded implementation of lzip.
|
|
|
|
ln -s plzip "$1/usr/bin/lzip"
|