2022-08-10 21:58:22 +03:00
|
|
|
distributable:
|
|
|
|
url: https://github.com/mesonbuild/meson/releases/download/{{ version }}/meson-{{ version }}.tar.gz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
|
|
|
github: mesonbuild/meson/tags
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
python.org: 3
|
2022-09-15 00:45:56 +03:00
|
|
|
gnu.org/bash: '>=2' # for our venv/relocation scripts: feel free to fix that
|
2022-08-10 21:58:22 +03:00
|
|
|
|
|
|
|
build:
|
|
|
|
script: |
|
|
|
|
python3 -m venv {{prefix}}/libexec
|
|
|
|
|
2022-09-13 18:05:04 +03:00
|
|
|
cd "{{prefix}}"
|
2022-08-10 21:58:22 +03:00
|
|
|
|
2022-09-13 18:05:04 +03:00
|
|
|
libexec/bin/pip install -v --no-deps --no-binary :all: --ignore-installed meson
|
|
|
|
mkdir bin
|
|
|
|
|
2022-09-15 00:45:56 +03:00
|
|
|
mv libexec/bin/meson libexec/bin/meson.py
|
|
|
|
|
|
|
|
cd bin
|
|
|
|
ln -s ../libexec/bin/meson meson
|
2022-09-13 18:05:04 +03:00
|
|
|
|
2022-09-15 00:45:56 +03:00
|
|
|
cd ../libexec/bin
|
2022-09-13 18:05:04 +03:00
|
|
|
fix-shebangs.ts *
|
|
|
|
|
2022-09-15 00:45:56 +03:00
|
|
|
cp {{ pkg.pantry-prefix}}/shim meson
|
|
|
|
|
2022-09-13 18:05:04 +03:00
|
|
|
rm Activate.ps1 activate.csh activate.fish
|
|
|
|
|
|
|
|
sed -i.bak 's|VIRTUAL_ENV=".*"|VIRTUAL_ENV="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. \&\& pwd)"|' activate
|
|
|
|
rm activate.bak
|
|
|
|
|
|
|
|
for x in python*; do
|
|
|
|
ln -sf ../../../../python.org/v3/bin/$x $x
|
|
|
|
done
|
2022-09-15 00:45:56 +03:00
|
|
|
#FIXME tea provides: {{ deps.python.org.version.major }}
|
2022-08-10 21:58:22 +03:00
|
|
|
test:
|
|
|
|
dependencies:
|
|
|
|
ninja-build.org: 1
|
|
|
|
tea.xyz/gx/cc: c99
|
|
|
|
script: |
|
2022-08-31 21:05:21 +03:00
|
|
|
meson ..
|
2022-08-10 21:58:22 +03:00
|
|
|
test -f build.ninja
|
2022-08-31 21:05:21 +03:00
|
|
|
working-directory: build
|