summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Eyolfson2017-04-25 20:13:08 -0400
committerJon Eyolfson2017-04-25 20:13:08 -0400
commit0e8e5f760f6c519297a027b52145ce9ee38b3dde (patch)
tree340cd47a2789e91c15fc6a1d7bf8d1dc1fb5d95f
parent9d04042054092628236b2e0f243b76d27a568fe2 (diff)
downloadaur-0e8e5f760f6c519297a027b52145ce9ee38b3dde.tar.gz
Update to 0.6.6-2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 7 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ad485d831146..10f1a56259e5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Wed Apr 26 00:12:43 UTC 2017
pkgbase = emacs-undo-tree
pkgdesc = Replace Emacs' undo system with an intuitive tree-based system.
pkgver = 0.6.6
- pkgrel = 1
+ pkgrel = 2
url = http://www.dr-qubit.org/tags/computing-code-emacs.html
install = emacs-undo-tree.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index cf50828092aa..857f78a27311 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,8 @@
+# Maintainer: Jon Eyolfson <jon@eyl.io>
# Contributor: listx <linusarver <at> gmail <dot> com>
pkgname=emacs-undo-tree
pkgver=0.6.6
-pkgrel=1
+pkgrel=2
pkgdesc="Replace Emacs' undo system with an intuitive tree-based system."
arch=('any')
url="http://www.dr-qubit.org/tags/computing-code-emacs.html"
@@ -19,8 +20,7 @@ build() {
}
package() {
- # create destination path
+ cd "${srcdir}/${pkgname}"
install -d $pkgdir/usr/share/emacs/site-lisp/undo-tree
- # copy over file into path
- cp "${srcdir}/${pkgname}/undo-tree."{el,elc} $pkgdir/usr/share/emacs/site-lisp/undo-tree
+ install -m644 *.el{c,} "${pkgdir}/usr/share/emacs/site-lisp/undo-tree"
}