File: upstream.sh

package info (click to toggle)
libmodulemd 2.14.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,472 kB
  • sloc: ansic: 37,029; python: 3,234; sh: 379; xml: 171; makefile: 10
file content (19 lines) | stat: -rwxr-xr-x 329 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

echo '=== Running meson at the configure stage'
meson build \
	-Dwith_docs=false \
	-Dwith_manpages=disabled \
	-Dpython_name=python3 \
	-Dwith_py2=false \
	-Dtest_installed_lib=true \

echo '=== Changing into the "build" directory'
cd build

echo '=== Running "meson test"'
meson test

echo '=== Seems fine!'