summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2018-02-05 21:24:15 +0100
committerhaawda2018-02-05 21:24:15 +0100
commit5dcdeec54da677454bd6686312566903491c1a10 (patch)
tree5c072add863ed9353f825dc3a8d5aabc028f14a0
parentc4e555a0ba0a98d4f6cd520b82b8e63fd51495df (diff)
downloadaur-5dcdeec54da677454bd6686312566903491c1a10.tar.gz
remove install file
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD9
-rw-r--r--icicles.install16
3 files changed, 5 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0caaff5d4ac9..5584cdccd708 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,9 @@
pkgbase = emacs-icicles
pkgdesc = an emacs library that enhances minibuffer completion
pkgver = 2018.01.15
- pkgrel = 1
+ pkgrel = 2
epoch = 1
url = http://www.emacswiki.org/emacs/Icicles
- install = icicles.install
arch = any
license = GPL
makedepends = wget
diff --git a/PKGBUILD b/PKGBUILD
index 4082e81f8dd7..0f46a3d7be40 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,12 @@
pkgname=emacs-icicles
epoch=1
pkgver=2018.01.15 # Taken from icicles.el
-pkgrel=1
+pkgrel=2
pkgdesc="an emacs library that enhances minibuffer completion"
arch=('any')
url="http://www.emacswiki.org/emacs/Icicles"
license=('GPL')
-makedepends=(wget)
-install=icicles.install
+makedepends=('wget')
pkgver() {
[ -d icicles ] && rm -r icicles
@@ -27,6 +26,6 @@ build() {
}
package() {
- install -d "$pkgdir"/usr/share/emacs/site-lisp/icicles
- cp -r "$srcdir"/icicles/* "$pkgdir"/usr/share/emacs/site-lisp/icicles
+ install -d "$pkgdir"/usr/share/emacs/site-lisp/
+ cp -r "$srcdir"/icicles/* "$pkgdir"/usr/share/emacs/site-lisp/
}
diff --git a/icicles.install b/icicles.install
deleted file mode 100644
index edaee6e043de..000000000000
--- a/icicles.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- cat << EOM
- Put this code into your ~/.emacs
- (setq load-path (cons "/usr/share/emacs/site-lisp/icicles" load-path))
- (require 'icicles)
-
- Documentation can be found at http://www.emacswiki.org/emacs/Icicles
-
- The file ring+.el should be loaded after loading the standard
- GNU file ring.el. So, in your ~/.emacs file, do this:
- (eval-after-load "ring" '(progn (require 'ring+)))
-EOM
-}
-post_upgrade() {
- post_install
-} \ No newline at end of file