grim/glibre

Fix some typos
default tip
14 months ago, Elliott Sales de Andrade
f5f875b772b5
Parents 340c7313e3eb
Children
Fix some typos

Testing Done:
Re-configured.

Reviewed at https://reviews.imfreedom.org/r/2296/
--- a/INSTALL Tue Mar 29 19:03:09 2022 -0500
+++ b/INSTALL Mon Feb 27 23:25:57 2023 -0600
@@ -2,17 +2,16 @@
============
glibre depends on:
glib-2.0 >= 2.24.0
- gtk+-3.0 >= 3.0.0
+ gtk-4.0 >= 4.6.0
-All of these packages and there development headers need to be installed
+All of these packages and their development headers need to be installed
prior to building glibre.
Building
========
-glibre uses meson as it's build system. As such compiling is a little bit
+glibre uses meson as its build system. As such compiling is a little bit
different than your typical ./configure, make, sudo make install. But not by
-much. To compile glibre you need run the following commands:
+much. To compile and install glibre you need run the following commands:
- meson build
- cd build
- ninja install
+ meson setup build
+ ninja -C build install
--- a/meson.build Tue Mar 29 19:03:09 2022 -0500
+++ b/meson.build Mon Feb 27 23:25:57 2023 -0600
@@ -3,7 +3,7 @@
)
GLIB = dependency('glib-2.0', version : '>=2.52.0')
-GTK3 = dependency('gtk4', version : '>=4.6.0')
+GTK = dependency('gtk4', version : '>=4.6.0')
add_project_arguments(
'-DGLIBRE_VERSION="@0@"'.format(meson.project_version()),
--- a/src/glibre-application.c Tue Mar 29 19:03:09 2022 -0500
+++ b/src/glibre-application.c Mon Feb 27 23:25:57 2023 -0600
@@ -83,7 +83,7 @@
}
/******************************************************************************
- * GObject Impelementation
+ * GObject Implementation
*****************************************************************************/
static void
glibre_application_init(GlibreApplication *app) {
--- a/src/meson.build Tue Mar 29 19:03:09 2022 -0500
+++ b/src/meson.build Mon Feb 27 23:25:57 2023 -0600
@@ -13,6 +13,6 @@
'glibre-window.c',
'glibre-window.h',
glibre_resources,
- dependencies: [GLIB, GTK3],
+ dependencies: [GLIB, GTK],
install: true,
)