gtk-transcription/README.md

27 lines
824 B
Markdown
Raw Normal View History

2023-07-17 09:43:37 +00:00
# `gtk-transcription`
2023-07-16 10:22:04 +00:00
## Building the project
Make sure you have `flatpak` and `flatpak-builder` installed. Then run the commands below. Please note that these commands are just for demonstration purposes. Normally this would be handled by your IDE, such as GNOME Builder or VS Code with the Flatpak extension.
2023-07-16 10:22:04 +00:00
2023-07-17 09:43:37 +00:00
```sh
2023-07-16 10:22:04 +00:00
flatpak install --user org.gnome.Sdk//43 org.freedesktop.Sdk.Extension.rust-stable//22.08 org.gnome.Platform//43 org.freedesktop.Sdk.Extension.llvm14//22.08
flatpak-builder --user flatpak_app build-aux/dev.mnts.Transcription.Devel.json
2023-07-16 10:22:04 +00:00
```
## Running the project
2023-07-17 09:43:37 +00:00
```sh
flatpak-builder --run flatpak_app build-aux/dev.mnts.Transcription.Devel.json Transcription
2023-07-16 10:22:04 +00:00
```
2023-07-17 09:43:37 +00:00
### Contributing
### Generating `po` and `pot` files.
```sh
meson build build/
cd build
meson compile gtk-transcription-update-po
```