https://github.com/phw/docker-meson-valac
Simple docker image containing Meson, Ninja, Vala compiler and GTK libraries that allows you to build Vala projects using meson
https://github.com/phw/docker-meson-valac
docker docker-image gtk3 meson vala
Last synced: about 1 month ago
JSON representation
Simple docker image containing Meson, Ninja, Vala compiler and GTK libraries that allows you to build Vala projects using meson
- Host: GitHub
- URL: https://github.com/phw/docker-meson-valac
- Owner: phw
- Created: 2018-05-07T15:52:44.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-07-19T07:38:09.000Z (almost 3 years ago)
- Last Synced: 2025-01-24T11:09:26.376Z (3 months ago)
- Topics: docker, docker-image, gtk3, meson, vala
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/uploadedlobster/meson-valac/
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
Simple docker image containing Meson, Ninja, Vala compiler and GTK libraries
that allows you to build Vala projects using meson.# Building a Vala project in the current folder
````
docker run --rm -v $PWD:/build \
uploadedlobster/meson-valac \
/bin/sh -c "cd /build; meson builddir; cd builddir; ninja test"
````# Using with Travis CI
For a full example how this image can be used for a Travis CI build see
https://github.com/phw/peek/blob/master/.travis.yml