mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-10 12:50:20 -07:00
13 lines
172 B
Bash
Executable File
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")
|
|
|