10 lines
208 B
Bash
Executable file
10 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
mv ./subprojects/packagecache .
|
|
rm -rf ./subprojects ./builddir
|
|
mkdir subprojects
|
|
mv ./packagecache ./subprojects
|
|
mkdir builddir
|
|
cp wraps/*.wrap subprojects/
|
|
meson setup builddir
|