summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJon Eyolfson2017-04-25 20:13:08 -0400
committerJon Eyolfson2017-04-25 20:13:08 -0400
commit0e8e5f760f6c519297a027b52145ce9ee38b3dde (patch)
tree340cd47a2789e91c15fc6a1d7bf8d1dc1fb5d95f /PKGBUILD
parent9d04042054092628236b2e0f243b76d27a568fe2 (diff)
downloadaur-0e8e5f760f6c519297a027b52145ce9ee38b3dde.tar.gz
Update to 0.6.6-2
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD8
1 files changed, 4 insertions, 4 deletions
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"
}