2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-25 15:26:20 +00:00
repo/core/bsdtar/build

13 lines
172 B
Plaintext
Raw Normal View History

2019-06-23 17:56:31 +00:00
#!/bin/sh -e
./configure \
2019-06-23 18:57:15 +00:00
--prefix=/usr \
--without-xml2 \
--disable-rpath
2019-06-23 17:56:31 +00:00
make
make DESTDIR="$1" install
2019-06-23 18:15:51 +00:00
2019-06-23 18:57:15 +00:00
(cd "$1/usr/bin"; ln -s bsdtar "$1/usr/bin/tar")