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.
16 lines
391 B
16 lines
391 B
#!/bin/bash
|
|
|
|
# Generate translations for certain files such as polkit
|
|
pushd "${PWD}"/po
|
|
./create_pot_file.sh
|
|
./update_po_files.sh
|
|
make
|
|
make clean
|
|
popd
|
|
|
|
# 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
|
|
# Generate the meson build files
|
|
autovala meson
|
|
|