forked from cromer/pamac-classic
17 lines
391 B
Bash
Executable File
17 lines
391 B
Bash
Executable File
#!/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
|