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

18 lines
304 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
ln -s bsdcat "$1/usr/bin/cat"
ln -s bsdcpio "$1/usr/bin/cpio"
ln -s bsdtar "$1/usr/bin/tar"
2021-10-23 03:14:28 +00:00
install -Dm755 unzip "$1/usr/bin/unzip"
2021-07-30 18:20:52 +00:00