mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-25 16:50:07 -07:00
11 lines
143 B
Bash
Executable File
11 lines
143 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
mkdir -p "$1/bin"
|
|
ln -s "/lib/ld-musl-x86_64.so.1" "$1/bin/ldd"
|