https://github.com/GNOME/glade
Read-only mirror of https://gitlab.gnome.org/GNOME/glade
https://github.com/GNOME/glade
Last synced: 18 days ago
JSON representation
Read-only mirror of https://gitlab.gnome.org/GNOME/glade
- Host: GitHub
- URL: https://github.com/GNOME/glade
- Owner: GNOME
- License: other
- Created: 2012-06-03T05:01:34.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T20:40:33.000Z (9 months ago)
- Last Synced: 2024-10-07T12:51:09.151Z (7 months ago)
- Language: C
- Homepage: https://gitlab.gnome.org/GNOME/glade
- Size: 39.5 MB
- Stars: 227
- Watchers: 12
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.old.gz
- Contributing: CONTRIBUTING.md
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
- fucking-Awesome-Linux-Software - )## License
Glade is distributed under the
[GNU General Public License](https://www.gnu.org/licenses/gpl-2.0.en.html),
version 2 (GPL) and
[GNU Library General Public License](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html),
version 2 (LGPL) as described in the COPYING file.## Manual instalation
Requirements
* C compiler like [gcc](https://gcc.gnu.org/)
* [Meson](http://mesonbuild.org) build system
* [GTK](http://www.gtk.org) 3.24.0 or above
* [libxml](http://xmlsoft.org/) 2.4.1 - used to parse XML files
* libgirepository1.0 - Build-time dependency
* xsltproc - for man pages generationOptional dependencies:
* glib-networking plugins for TLS support (Needed for survey)
* libwebkit2gtk-4.0 - For Webkit plugin
* python-gi - For Python plugin
* libgjs - For JavaScript plugin
* gettext, itstool - For translation supportDownload sources from git and build using meson/ninja
# Install dependencies, for example in debian
sudo apt install gcc meson libgtk-3-dev libxml2-dev libgirepository1.0-dev xsltproc gettext itstool
# Optional dependencies
sudo apt install libgjs-dev libwebkit2gtk-4.0-dev python-gi-dev glib-networking# Clone the source repository or download tarball
git clone https://gitlab.gnome.org/GNOME/glade.git# Create build directory and configure project
mkdir glade/build && cd glade/build
meson --prefix=~/.local# Build and install
ninja
ninja installTo run it you might need to set up LD_LIBRARY_PATH depending on your
distribution defaultsLD_LIBRARY_PATH=~/.local/lib/x86_64-linux-gnu/ glade
## Linux
Debian
apt install glade
Fedora
yum install glade
Any distribution with Flatpak
flatpak install flathub org.gnome.Glade
[
](https://flathub.org/apps/details/org.gnome.Glade)
## Windows
Available as a
[package](https://packages.msys2.org/package/mingw-w64-x86_64-glade) in
[MSYS2](https://www.msys2.org/)pacman -S mingw-w64-x86_64-glade
## OSX
Available as a [package](https://formulae.brew.sh/formula/glade) in
[Brew](https://brew.sh/)brew install glade