Fix setting the prefix

Otherwise the package is installed into /usr/local
This commit is contained in:
link2xt 2026-02-21 13:38:25 +00:00
parent b1bf9e6aa2
commit 096d868807

View file

@ -32,10 +32,10 @@ prepare() {
build() {
cd "$pkgname-$pkgver"/src
PREFIX=/usr make
make PREFIX=/usr
}
package() {
cd "$pkgname-$pkgver"/src
make DESTDIR="$pkgdir/" install
make PREFIX=/usr DESTDIR="$pkgdir/" install
}