2017-10-10 16:29:22 -03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Generate translations for certain files such as polkit
|
|
|
|
pushd "${PWD}"/po
|
2017-10-27 18:10:19 -03:00
|
|
|
./create_pot_file.sh
|
|
|
|
./update_po_files.sh
|
2017-10-10 16:29:22 -03:00
|
|
|
make
|
|
|
|
make clean
|
|
|
|
popd
|
|
|
|
|
2017-10-30 20:18:44 -03:00
|
|
|
# Update the autovala project file
|
|
|
|
autovala refresh
|
|
|
|
# Remove unused folders and files made by autovala
|
|
|
|
rm -rf ./{install,packages,doc} ./data/{local,bash_completion} ./.hgignore ./.bzrignore
|
2019-07-06 15:24:14 -04:00
|
|
|
# Generate the meson build files
|
2017-10-30 20:18:44 -03:00
|
|
|
autovala meson
|