2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-10 12:50:20 -07: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")