1
0

Added PREFIX in Makefile and in PKGBUILD in package().

This commit is contained in:
Alexander Andreev 2023-09-25 02:17:12 +04:00
parent 33cd1dc3b8
commit 134ed23450
Signed by: Arav
GPG Key ID: D22A817D95815393
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ TARGET=dwelling-home
SYSDDIR_=${shell pkg-config systemd --variable=systemdsystemunitdir}
SYSDDIR=${SYSDDIR_:/%=%}
DESTDIR:=
PREFIX:=/usr/local
VERSION=23.38.0

View File

@ -22,5 +22,5 @@ build() {
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
make DESTDIR="$pkgdir/" PREFIX="/usr" install
}