mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 21:21:44 +00:00
15 lines
199 B
Bash
Executable File
15 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
args="\
|
|
--prefix=/usr \
|
|
--program-prefix=mixer-"
|
|
|
|
if test -z "${NOCONFIGURE}"; then
|
|
./configure $args "$@"
|
|
make clean
|
|
fi
|