I have downloaded the 3.22.2 tarball and am attempting to install to a given directory $PREFIX, as per the following.
tar xvf 3.22.2.tar.gz
cd GtkSharp-3.22.2
meson -Dinstall=true -Dprefix=$PREFIX build/
ninja -C build/
ninja -C build/ install
However, it appears that -Dinstall=true is being ignored as $PREFIX is empty and ninja outputs the following message.
ninja: Entering directory `build/'
[0/1] Installing files.
Nothing to install.
I have also tried directly setting install to true as follows, however, this has no effect.
sed -i "s/option('install', type : 'boolean', value : false)/\
option('install', type : 'boolean', value : true)/g" meson_options.txt
I have downloaded the 3.22.2 tarball and am attempting to install to a given directory
$PREFIX, as per the following.However, it appears that
-Dinstall=trueis being ignored as$PREFIXis empty andninjaoutputs the following message.I have also tried directly setting
installtotrueas follows, however, this has no effect.