mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-10 23:20:57 +00:00
12 lines
249 B
Bash
Executable File
12 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
git clone https://github.com/stef/libsphinx
|
|
cd libsphinx
|
|
git submodule update --init --recursive --remote
|
|
cd src
|
|
sed -i 's|/usr/local|/usr|' makefile
|
|
make
|
|
sudo make install
|
|
ldconfig
|
|
pip3 install pwdsphinx
|
|
sudo mkdir -p /etc/sphinx |