summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjonian2016-09-24 12:13:44 +0300
committerjonian2016-09-24 12:13:44 +0300
commit7d4ab2e7cdb4ab878e55c548a8e4a1a08e4bbfb2 (patch)
tree04ad3d1aaffb772f0d43c8d198aafc0f8c576428
parentc1256bef52dd3a8cee2548e0ed8c1dcd80d8dced (diff)
downloadaur-7d4ab2e7cdb4ab878e55c548a8e4a1a08e4bbfb2.tar.gz
fix install path
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c0cc4b8c16c1..1618f546ecee 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Sep 24 08:55:29 UTC 2016
+# Sat Sep 24 09:12:07 UTC 2016
pkgbase = gedit-strip-whitespace
pkgdesc = Gedit 3 plugin to strip trailing whitespace on file save
pkgver = 0.1.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/hardpixel/gedit-strip-whitespace
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 7174d5e55a6e..60a09bcafab3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jonian Guveli <https://github.com/jonian/>
pkgname=gedit-strip-whitespace
pkgver=0.1.0
-pkgrel=1
+pkgrel=2
pkgdesc="Gedit 3 plugin to strip trailing whitespace on file save"
arch=("any")
url="https://github.com/hardpixel/gedit-strip-whitespace"
@@ -11,7 +11,7 @@ source=("https://github.com/hardpixel/gedit-strip-whitespace/archive/$pkgver.tar
md5sums=("SKIP")
package() {
- mkdir -p "$pkgdir/usr/share/gedit/plugins/strip-whitespace"
- cp -a "$srcdir/$pkgname-$pkgver/." "$pkgdir/usr/share/gedit/plugins/strip-whitespace"
+ mkdir -p "$pkgdir/usr/lib/gedit/plugins/strip-whitespace"
+ cp -a "$srcdir/$pkgname-$pkgver/." "$pkgdir/usr/lib/gedit/plugins/strip-whitespace"
}