From 6abd7ea855c64cfbd92fcefdcc281477a8e4bec3 Mon Sep 17 00:00:00 2001 From: Emma Victoria Beale Date: Tue, 18 Aug 2026 15:25:02 +0200 Subject: [PATCH] use local meson, need to pip install meson > 0.60 at home folder --- crystfel/build | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/crystfel/build b/crystfel/build index 7472355..0512977 100755 --- a/crystfel/build +++ b/crystfel/build @@ -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 }