12 lines
348 B
Bash
Executable File
12 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf build-gcc
|
|
mkdir build-gcc && cd build-gcc && cmake .. && make
|
|
[ 0 != $? ] && echo "make failed ;-(" && exit 1
|
|
mkdir -p run/locale/ru/LC_MESSAGES
|
|
mkdir -p run/locale/it/LC_MESSAGES
|
|
cp po/ru/gettextex1.gmo run/locale/ru/LC_MESSAGES/gettextex1.mo
|
|
cp po/it/gettextex1.gmo run/locale/it/LC_MESSAGES/gettextex1.mo
|
|
cd run
|
|
./gettextex1
|