diff options
author | Alexey Yerin <yyp@disroot.org> | 2023-10-04 21:01:43 +0300 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2023-10-04 21:01:43 +0300 |
commit | c137ce659bd2449c430c0a5ac7f932f2286c250c (patch) | |
tree | 40cb6a80520987e22a4d33ad21fc603fe1a522b5 /README.md | |
parent | 07cff557463d13bbd1baa970f609c8dbb13e16a8 (diff) |
Remove manual gobject-introspection build
gobject-introspection-dev or similar package provides those files.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/README.md b/README.md index 559c6cf..e59fc47 100644 --- a/README.md +++ b/README.md @@ -6,29 +6,18 @@ GTK family of libraries (GTK+, GDK, Pango, etc). Dependencies: * An up-to-date [Hare] toolchain * [hare-fastxml] -* Development files for the desired GTK version and its dependencies. Make sure -`/usr/share/gir-1.0` is included. - -A few core libraries do not ship GIR XML files by default. They can be obtained -from gobject-introspection: - -``` -git clone https://gitlab.gnome.org/GNOME/gobject-introspection.git -meson setup build/ -ninja -C build/ - -# The path where this is downloaded will be used later -``` +* Development files for GObject-Introspection, the desired GTK version and its +dependencies. Make sure `/usr/share/gir-1.0` is included. ### GTK 3 ``` -./generate <path to gobject-introspection> +./generate make install ``` ### GTK 4 ``` -./generate4 <path to gobject-introspection> +./generate4 make install4 ``` |