use local meson, need to pip install meson > 0.60 at home folder

This commit is contained in:
Emma Victoria Beale
2026-08-18 16:34:05 +02:00
parent 2ddb347ec6
commit 6abd7ea855
+12
View File
@@ -7,13 +7,25 @@
# could be pip3 install --user meson
# cd lines can be deleted with compile_in_sourcetree being true
pbuild::configure() {
<<<<<<< HEAD
=======
cd "${SRC_DIR}"
>>>>>>> fc35801 (use local meson, need to pip install meson > 0.60 at home folder)
~/.local/bin/meson setup build --prefix="${PREFIX}"
}
pbuild::compile() {
<<<<<<< HEAD
=======
cd "${SRC_DIR}"
>>>>>>> fc35801 (use local meson, need to pip install meson > 0.60 at home folder)
~/.local/bin/meson compile -C build
}
pbuild::install() {
<<<<<<< HEAD
=======
cd "${SRC_DIR}"
>>>>>>> fc35801 (use local meson, need to pip install meson > 0.60 at home folder)
~/.local/bin/meson install -C build
}