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