2021-05-10 12:55:12 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-05-11 00:07:37 -04:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--without-nettle \
|
|
|
|
--without-openssl \
|
|
|
|
--without-xml2 \
|
|
|
|
--without-expat
|
2021-05-10 12:55:12 -04:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
|
|
|
|
|
|
|
ln -s bsdtar "$1/usr/bin/tar"
|