A music player writen in Vala and GTK+
- Install required dependencies:
sudo apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev build-essential gettext libgirepository1.0-dev libglib2.0-dev libgtk-4-dev libgranite-dev meson cmake valac valadoc
- Configure installation target directory and prepare the source code:
meson build --prefix=/usr
- Compile the source code and install the app on your system:
cd build
ninja
ninja install
To remove the application files from your system, run next command from the root of the project:
sudo ninja -C build uninstall