summaryrefslogtreecommitdiff
path: root/INSTALL.in
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-01-09 11:17:35 +0000
committerPhilip Withnall <withnall@endlessm.com>2019-01-15 15:11:43 +0000
commit41a8f74ff836abf1c78666b0d456846a0f8dd775 (patch)
tree3b1e47e31795bac8dbf0a72628f3ae3beb93f440 /INSTALL.in
parent9ea050b1312e2d2a35f1993d0d803752ffe08b64 (diff)
downloadglib-41a8f74ff836abf1c78666b0d456846a0f8dd775.tar.gz
docs: Update INSTALL.in to mention Meson rather than autotools
Signed-off-by: Philip Withnall <withnall@endlessm.com>
Diffstat (limited to 'INSTALL.in')
-rw-r--r--INSTALL.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/INSTALL.in b/INSTALL.in
index 1edc7e9c2..12774c30e 100644
--- a/INSTALL.in
+++ b/INSTALL.in
@@ -3,12 +3,11 @@ Simple install procedure
% tar xf glib-@GLIB_VERSION@.tar.gz # unpack the sources
% cd glib-@GLIB_VERSION@ # change to the toplevel directory
- % ./configure # run the `configure' script
- % make # build GLIB
+ % meson _build # configure the build
+ % ninja -C _build # build GLib
[ Become root if necessary ]
- % rm -rf /install-prefix/include/glib.h /install-prefix/include/gmodule.h
- % make install # install GLIB
+ % ninja -C _build install # install GLib
Requirements
============
@@ -25,7 +24,7 @@ information.) Information about pkg-config can be found at:
http://www.freedesktop.org/software/pkgconfig/
-GNU make (http://www.gnu.org/software/make) is also required.
+Meson (http://mesonbuild.com/) is also required.
In order to implement conversions between character sets,
GLib requires an implementation of the standard iconv() routine.