18 lines
415 B
Bash
Executable File
18 lines
415 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# plzip is the only thing that will ever require
|
|
# this library. Let's simply build it and statically
|
|
# compile plzip.
|
|
(cd lzlib; ./configure; make)
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
CXXFLAGS="$CXXFLAGS -static -L$PWD/lzlib -I$PWD/lzlib"
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Create the symlink for compatibility. We're using
|
|
# a multi-threaded implementation of lzip.
|
|
ln -s plzip "$1/usr/bin/lzip"
|