mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
11 lines
250 B
Bash
11 lines
250 B
Bash
#! /bin/bash
|
|
|
|
# WavPak 1.5.0
|
|
# source: http://www.wavpack.com/wavpack-5.1.0.tar.bz2
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|