10 lines
121 B
Plaintext
10 lines
121 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--cc="${CC:-cc}" \
|
||
|
--config-musl
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|