summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattia Biondi2020-11-20 14:35:07 +0100
committerMattia Biondi2020-11-20 14:35:07 +0100
commitf78fbbee3463f40f23ef9ed2f511e335e374fe43 (patch)
tree01134a782484d7a3d1b333e86ec4739c6b920c0d
parent5a6f97c97232e9cea8a57b12cb62fdec1cf5e703 (diff)
downloadaur-f78fbbee3463f40f23ef9ed2f511e335e374fe43.tar.gz
Fix problem with /usr/local symlink
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f16a8c4f118e..b3467ee94327 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = umps3-git
pkgdesc = Virtual machine simulator based around the MIPS R2/3000 microprocessor.
pkgver = 3.0.4.r2.gb7cb8af
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/virtualsquare/umps3
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 5a80940c384c..4c1f84656901 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ _name=umps
_ver=3
pkgname=$_name$_ver-git
pkgver=3.0.4.r2.gb7cb8af
-pkgrel=1
+pkgrel=2
pkgdesc="Virtual machine simulator based around the MIPS R2/3000 microprocessor."
arch=('x86_64')
url="https://github.com/virtualsquare/umps3"
@@ -20,7 +20,8 @@ pkgver() {
build() {
cmake -B build -S $pkgname \
- -DCMAKE_BUILD_TYPE=Release
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
make -C build
}