summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMagnus Groß2022-05-02 21:28:04 +0200
committerMagnus Groß2022-05-02 21:28:07 +0200
commit71fecaf945db616b048e1396eb5c327f93df9d40 (patch)
tree0e8861c003636f9f227ab88a7b8bfab8dcd4bae9
parentc3621ed155f62a54e4d75e998f98405b69011494 (diff)
downloadaur-71fecaf945db616b048e1396eb5c327f93df9d40.tar.gz
Fix quoting
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2760bd387c18..0872ed5a68d8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = grandorgue-git
pkgdesc = Virtual Pipe Organ Software
pkgver = 3.6.6.1.r0.g5be48044
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/GrandOrgue/grandorgue
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 94e7432f8505..9de324e4630f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=grandorgue
pkgname="$_pkgname"-git
pkgver=3.6.6.1.r0.g5be48044
-pkgrel=1
+pkgrel=2
pkgdesc="Virtual Pipe Organ Software"
arch=('i686' 'x86_64')
url="https://github.com/GrandOrgue/$_pkgname"
@@ -29,5 +29,5 @@ build() {
package() {
cd "$_pkgname"
- DESTDIR=$pkgdir cmake --install build
+ DESTDIR="$pkgdir" cmake --install build
}