-
Notifications
You must be signed in to change notification settings - Fork 4
/
install
executable file
·26 lines (22 loc) · 948 Bytes
/
install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash
locale=$(locale | grep LANG= | cut -d= -f2 | cut -d_ -f1)
luajit_version="2.1.0-beta3"
vips_version="8.10.5"
if [ $locale = "en" ]; then
missing="was not found! Please install it via your package manager or manually. Recommended version:"
info="Check https://github.com/piface314/ygo-fabrica/wiki/Install for more info if necessary."
elif [ $locale = "pt" ]; then
missing="não foi encontrado! Por favor, instale-o através do seu gerenciador de pacote ou manualmente. Versão recomendada:"
info="Vá em https://github.com/piface314/ygo-fabrica/wiki/Instalar para mais informações se necessário."
fi
if ! command -v luajit >/dev/null 2>&1; then
echo luajit $missing $luajit_version.
echo $info
exit 1
fi
if ! command -v vips --version >/dev/null 2>&1; then
echo vips $missing $vips_version.
echo $info
exit 1
fi
luajit make.lua install --locale $locale && luajit make.lua config --locale $locale "$1"