2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-16 12:42:28 +00:00
repo/core/bsdtar/build
2019-06-23 21:57:15 +03:00

13 lines
172 B
Bash
Executable File

#!/bin/sh -e
./configure \
--prefix=/usr \
--without-xml2 \
--disable-rpath
make
make DESTDIR="$1" install
(cd "$1/usr/bin"; ln -s bsdtar "$1/usr/bin/tar")