You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
491 B
20 lines
491 B
# go to script directory |
|
cd "${0%/*}" |
|
|
|
export PATH="$HOME/.local/bin:$HOME/gtk/inst/bin:$PATH" |
|
|
|
# Generation does not work... (really buggy with CMake, but does not work at all with automake on MingW) |
|
# So do this manually... |
|
./sox-pc.sh > $HOME/gtk/inst/lib/pkgconfig/sox.pc |
|
|
|
|
|
git clone https://git.code.sf.net/p/sox/code sox-code |
|
|
|
cd sox-code |
|
git checkout tags/sox-14.4.2 -b sox-14.4.2 |
|
|
|
mkdir build |
|
cd build |
|
|
|
$HOME/gtk/inst/bin/cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/gtk/inst .. |
|
make -j8
|
|
|