summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Vakil2021-02-27 01:50:18 +0330
committerAmin Vakil2021-02-27 01:50:42 +0330
commit59f8c7ad093fa503770a6460cfde6f1661e64764 (patch)
tree9662c18a589f7a5629fe4cba3d1682d2742636bc
parent0add3e241849a06d709af1cd172a5c23e7151946 (diff)
downloadaur-59f8c7ad093fa503770a6460cfde6f1661e64764.tar.gz
Fix make install DESTDIR to install in /usr/share instead of /home
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f9b909906309..3e275d10dd3a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gnome-shell-extension-dash-to-dock-git
pkgdesc = move the dash out of the overview transforming it in a dock
pkgver = 69.r11.g7a2c87b
- pkgrel = 2
+ pkgrel = 3
url = https://micheleg.github.io/dash-to-dock/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index f16507ff2e84..3f8b55d7f918 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@
_srcname=dash-to-dock
pkgname=gnome-shell-extension-dash-to-dock-git
pkgver=69.r11.g7a2c87b
-pkgrel=2
+pkgrel=3
pkgdesc="move the dash out of the overview transforming it in a dock"
arch=('any')
url="https://micheleg.github.io/dash-to-dock/"
@@ -37,5 +37,5 @@ build() {
package() {
cd "${_srcname}"
make
- make install
+ make DESTDIR=${pkgdir} install
}