Update wsl script for CDDA conversion
This commit is contained in:
parent
582e0d9f34
commit
27287773b7
|
@ -5,7 +5,7 @@ BASEDIR=$(dirname "$0")
|
||||||
mkdir -p $BASEDIR/../bin/extern/
|
mkdir -p $BASEDIR/../bin/extern/
|
||||||
cd $BASEDIR/../bin/extern
|
cd $BASEDIR/../bin/extern
|
||||||
|
|
||||||
sudo apt install -y python3 python3-pip python3-venv pkg-config libiso9660-dev swig
|
sudo apt install -y python3 python3-pip python3-venv pkg-config libiso9660-dev libsndfile1-dev swig
|
||||||
if ! test -d py3venv; then
|
if ! test -d py3venv; then
|
||||||
python3 -m venv py3venv
|
python3 -m venv py3venv
|
||||||
fi
|
fi
|
||||||
|
@ -22,6 +22,14 @@ if ! test -d Cue2cu2; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd pop-fe
|
cd pop-fe
|
||||||
|
if ! test -d atracdenc; then
|
||||||
|
git clone https://github.com/dcherednik/atracdenc.git
|
||||||
|
cd atracdenc/src/
|
||||||
|
cmake .
|
||||||
|
make
|
||||||
|
cd ../..
|
||||||
|
fi
|
||||||
|
|
||||||
if ! test -d PSL1GHT; then
|
if ! test -d PSL1GHT; then
|
||||||
git clone https://github.com/sahlberg/PSL1GHT
|
git clone https://github.com/sahlberg/PSL1GHT
|
||||||
cd PSL1GHT/tools/ps3py
|
cd PSL1GHT/tools/ps3py
|
||||||
|
|
Loading…
Reference in New Issue