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.
111 lines
3.7 KiB
111 lines
3.7 KiB
SHELL:= /bin/bash
|
|
PYTHON:= python3.7
|
|
|
|
CXX ?= g++
|
|
CC ?= gcc # used for sph2pipe
|
|
# CXX = clang++ # Uncomment these lines...
|
|
# CC = clang # ...to build with Clang.
|
|
|
|
WGET ?= wget --no-check-certificate
|
|
|
|
.PHONY: all clean
|
|
|
|
all: virtualenv.done apt.done kenlm.done sox.done soxbindings.done mfa.done sclite.done
|
|
|
|
virtualenv.done:
|
|
test -d venv || virtualenv -p $(PYTHON) venv
|
|
touch virtualenv.done
|
|
|
|
clean:
|
|
rm -fr venv
|
|
find -iname "*.pyc" -delete
|
|
rm -rf kenlm
|
|
|
|
|
|
apt.done:
|
|
apt update -y
|
|
apt install -y bc flac jq vim tig tree pkg-config libsndfile1 libflac-dev libogg-dev libvorbis-dev libboost-dev swig python3-dev
|
|
echo "check_certificate = off" >> ~/.wgetrc
|
|
touch apt.done
|
|
|
|
kenlm.done:
|
|
# Ubuntu 16.04 透過 apt 會安裝 boost 1.58.0
|
|
# it seems that boost (1.54.0) requires higher version. After I switched to g++-5 it compiles normally.
|
|
apt install -y --allow-unauthenticated build-essential cmake libboost-system-dev libboost-thread-dev libboost-program-options-dev libboost-test-dev libeigen3-dev zlib1g-dev libbz2-dev liblzma-dev
|
|
apt-get install -y gcc-5 g++-5 && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50 && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 50
|
|
test -d kenlm || $(WGET) -O - https://kheafield.com/code/kenlm.tar.gz | tar xz
|
|
rm -rf kenlm/build && mkdir -p kenlm/build && cd kenlm/build && cmake .. && make -j4 && make install
|
|
cd kenlm && python setup.py install
|
|
touch kenlm.done
|
|
|
|
sox.done:
|
|
apt install -y libvorbis-dev libmp3lame-dev libmad-ocaml-dev
|
|
test -d sox-14.4.2 || $(WGET) https://nchc.dl.sourceforge.net/project/sox/sox/14.4.2/sox-14.4.2.tar.gz
|
|
tar -xvzf sox-14.4.2.tar.gz -C .
|
|
cd sox-14.4.2 && ./configure --prefix=/usr/ && make -j4 && make install
|
|
touch sox.done
|
|
|
|
soxbindings.done:
|
|
test -d soxbindings || git clone https://github.com/pseeth/soxbindings.git
|
|
cd soxbindings && python setup.py install
|
|
touch soxbindings.done
|
|
|
|
mfa.done:
|
|
test -d montreal-forced-aligner || $(WGET) https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner/releases/download/v1.0.1/montreal-forced-aligner_linux.tar.gz
|
|
tar xvf montreal-forced-aligner_linux.tar.gz
|
|
touch mfa.done
|
|
|
|
openblas.done:
|
|
bash extras/install_openblas.sh
|
|
touch openblas.done
|
|
|
|
kaldi.done: openblas.done
|
|
bash extras/install_kaldi.sh
|
|
touch kaldi.done
|
|
|
|
#== SCTK ===============================================================================
|
|
# SCTK official repo does not have version tags. Here's the mapping:
|
|
# # 2.4.9 = 659bc36; 2.4.10 = d914e1b; 2.4.11 = 20159b5.
|
|
SCTK_GITHASH = 20159b5
|
|
|
|
SCTK_CXFLAGS = -w -march=native
|
|
SCTK_MKENV = CFLAGS="$(CFLAGS) $(SCTK_CXFLAGS)" \
|
|
CXXFLAGS="$(CXXFLAGS) -std=c++11 $(SCTK_CXFLAGS)" \
|
|
|
|
|
|
# Keep the existing target 'sclite' to avoid breaking the users who might have
|
|
# scripted it in.
|
|
.PHONY: sclite.done sctk_cleaned sctk_made
|
|
|
|
sclite.done sctk_made: sctk/.compiled
|
|
touch sclite.done
|
|
|
|
sctk/.compiled: sctk
|
|
rm -f sctk/.compiled
|
|
$(SCTK_MKENV) $(MAKE) -C sctk config
|
|
$(SCTK_MKENV) $(MAKE) -C sctk all doc
|
|
$(MAKE) -C sctk install
|
|
touch sctk/.compiled
|
|
|
|
# The GitHub archive unpacks into SCTK-{40-character-long-hash}/
|
|
sctk: sctk-$(SCTK_GITHASH).tar.gz
|
|
tar zxvf sctk-$(SCTK_GITHASH).tar.gz
|
|
rm -rf sctk-$(SCTK_GITHASH) sctk
|
|
mv SCTK-$(SCTK_GITHASH)* sctk-$(SCTK_GITHASH)
|
|
ln -s sctk-$(SCTK_GITHASH) sctk
|
|
touch sctk-$(SCTK_GITHASH).tar.gz
|
|
|
|
sctk-$(SCTK_GITHASH).tar.gz:
|
|
if [ -d '$(DOWNLOAD_DIR)' ]; then \
|
|
cp -p '$(DOWNLOAD_DIR)/sctk-$(SCTK_GITHASH).tar.gz' .; \
|
|
else \
|
|
$(WGET) -nv -T 10 -t 3 -O sctk-$(SCTK_GITHASH).tar.gz \
|
|
https://github.com/usnistgov/SCTK/archive/$(SCTK_GITHASH).tar.gz; \
|
|
fi
|
|
|
|
sctk_cleaned:
|
|
-for d in sctk/ sctk-*/; do \
|
|
[ ! -f $$d/.compiled ] || $(MAKE) -C $$d clean; \
|
|
rm -f $$d/.compiled; \
|
|
done
|