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