ci: Use cmake instead of make directly for Arch package

This commit is contained in:
Nick Bolton
2024-10-18 10:30:25 +01:00
parent 71e74735c0
commit 4ce81b59fb

View File

@ -32,7 +32,7 @@ options=('!debug')
package() {
# By default, `makepkg` will run from the `src` directory, which would
# only install the binaries, and not the .desktop file, etc. To install
# everything, we need to run `make install` with the root Makefile.
# everything, we need to set `--prefix`.
cd $startdir
make install DESTDIR=$pkgdir
cmake --install . --prefix "$pkgdir"
}