build: arch package won't install /bin

This commit is contained in:
sithlord48
2024-10-18 14:12:33 -04:00
committed by Chris Rizzitello
parent 246f5d59ab
commit 37fcec2554

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 set `--prefix`.
# everything, we need to set DESTDIR.
cd $startdir
cmake --install . --prefix "$pkgdir"
DESTDIR=$pkgdir cmake --install .
}