forked from kiss-community/repo
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"
|