summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Koch2017-07-07 20:12:42 +0200
committerAlexander Koch2017-07-07 20:12:42 +0200
commit20072ca65ae6db195c50d95c521ff6d268055e03 (patch)
treef1b22b08bf3e59bfbf959d7d3e45dfe0ce3b08a8
parent6768bf00ffe27673568cb29cf7890dd944188adc (diff)
downloadaur-20072ca65ae6db195c50d95c521ff6d268055e03.tar.gz
Fix install destination
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1fcb2f84f2ee..e4037a23b319 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = hdd-spindown.sh-git
pkgdesc = Automatic Disk Standby using Kernel diskstats and hdparm
pkgver = 20170707
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/lynix/hdd-spindown.sh
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 33218adde2a1..d77dc36eb392 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=hdd-spindown.sh-git
pkgver=20170707
-pkgrel=2
+pkgrel=3
pkgdesc="Automatic Disk Standby using Kernel diskstats and hdparm"
url="https://github.com/lynix/hdd-spindown.sh"
arch=('any')
@@ -20,7 +20,7 @@ md5sums=('SKIP')
package() {
cd "${srcdir}/${pkgname%-git}"
- make PREFIX="${pkgdir}/usr" install
+ make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: