kiss-mfavila-large/ports/official/core/libarchive/build

25 lines
362 B
Plaintext
Raw Normal View History

#!/bin/sh -e
./configure \
--prefix=/usr \
--without-nettle \
--without-openssl \
--without-xml2 \
--without-expat
make
make DESTDIR="$1" install
2022-02-24 14:05:46 +00:00
for i in zcat bzcat xzcat
do
ln -s $i "$1/usr/bin/$i"
done
for i in bsdcpio bsdtar
do
mv "$1/usr/bin/$i" "$1/usr/bin/$(echo $i|sed 's/bsd//')"
done
2021-10-23 03:14:28 +00:00
install -Dm755 unzip "$1/usr/bin/unzip"
2021-07-30 18:20:52 +00:00