summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjonian2016-09-24 12:13:27 +0300
committerjonian2016-09-24 12:13:27 +0300
commitd0be698ae20ece0d830462eeeccec4ecddf56ead (patch)
tree53847b87aa0d3b6963a8c74154acf82c9ac6f2a6
parent8555130bb4e2526115aee11247118657b4fb994c (diff)
downloadaur-d0be698ae20ece0d830462eeeccec4ecddf56ead.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 40966703abbf..16f662607d4d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Sep 24 08:54:06 UTC 2016
+# Sat Sep 24 09:11:23 UTC 2016
pkgbase = gedit-scroll-past
pkgdesc = Gedit 3 plugin to allow scrolling past the end of file
pkgver = 0.1.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/hardpixel/gedit-scroll-past
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 8b60bc7250fc..f8f9000f2b84 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jonian Guveli <https://github.com/jonian/>
pkgname=gedit-scroll-past
pkgver=0.1.0
-pkgrel=1
+pkgrel=2
pkgdesc="Gedit 3 plugin to allow scrolling past the end of file"
arch=("any")
url="https://github.com/hardpixel/gedit-scroll-past"
@@ -11,7 +11,7 @@ source=("https://github.com/hardpixel/gedit-scroll-past/archive/$pkgver.tar.gz")
md5sums=("SKIP")
package() {
- mkdir -p "$pkgdir/usr/share/gedit/plugins/scroll-past"
- cp -a "$srcdir/$pkgname-$pkgver/." "$pkgdir/usr/share/gedit/plugins/scroll-past"
+ mkdir -p "$pkgdir/usr/lib/gedit/plugins/scroll-past"
+ cp -a "$srcdir/$pkgname-$pkgver/." "$pkgdir/usr/lib/gedit/plugins/scroll-past"
}