Generically use cmake for build instead of make directly

This commit is contained in:
Manuel 2022-12-06 22:10:20 +01:00
parent da3252c2c6
commit adce6c3729

View file

@ -23,9 +23,9 @@ build() {
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF
make -C build
cmake --build build
}
package() {
make -C build DESTDIR="$pkgdir" install
DESTDIR="$pkgdir" cmake --install build
}