summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Husmann2016-06-10 03:41:40 +0200
committerStefan Husmann2016-06-10 03:41:40 +0200
commit8ab957bcc6b8bed07514d3542cd648967205ebee (patch)
tree16e156f40ce31a8535b1c9030bb9dc340ea7e2ef
parentf96f7e86748c71e8c0a09dca34e46744af7839a5 (diff)
downloadaur-8ab957bcc6b8bed07514d3542cd648967205ebee.tar.gz
remove install file
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--emacs.install28
3 files changed, 3 insertions, 33 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3f6e4ee28f67..7851d474161e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Wed Mar 16 06:36:38 UTC 2016
+# Fri Jun 10 01:41:40 UTC 2016
pkgbase = guile-emacs-git
pkgdesc = branch of GNU Emacs that replaces Emacs' own EmacsLisp engine with that of Guile.
pkgver = 116892.41120e0
- pkgrel = 2
+ pkgrel = 3
url = http://www.emacswiki.org/emacs/GuileEmacs
- install = emacs.install
arch = i686
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index d174387906cd..19533a8a826f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=guile-emacs-git
pkgver=116892.41120e0
-pkgrel=2
+pkgrel=3
pkgdesc="branch of GNU Emacs that replaces Emacs' own EmacsLisp engine with that of Guile."
arch=('i686' 'x86_64')
url="http://www.emacswiki.org/emacs/GuileEmacs"
@@ -11,7 +11,6 @@ makedepends=('git')
conflicts=('emacs' 'ctags')
provides=('emacs' 'ctags')
options=('!strip' '!makeflags')
-install=emacs.install
source=("guilemacs::git://git.hcoop.net/git/bpt/emacs.git#branch=wip")
md5sums=('SKIP')
_gitname="guilemacs"
diff --git a/emacs.install b/emacs.install
deleted file mode 100644
index d35d7f4280e0..000000000000
--- a/emacs.install
+++ /dev/null
@@ -1,28 +0,0 @@
-info_dir=/usr/share/info
-info_files=(ada-mode auth autotype calc ccmode cl dbus dired-x \
-ebrowse ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls \
-emacs-mime epa erc ert eshell eudc flymake forms gnus idlwave \
-mairix-el message mh-e newsticker nxml-mode org pcl-cvs pgg \
-rcirc reftex remember sasl sc semantic ses sieve smtpmail \
-speedbar tramp url vip viper widget woman)
-
-post_install() {
- for f in ${info_files[@]}; do
- install-info ${info_dir}/$f.info.gz ${info_dir}/dir 2> /dev/null
- done
- [ -e /usr/bin/gtk-update-icon-cache ] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor update-desktop-database -q 2> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- for f in ${info_files[@]}; do
- install-info --delete ${info_dir}/$f.info.gz ${info_dir}/dir 2> /dev/null
- done
-}
-
-post_remove() {
- [ -e /usr/bin/gtk-update-icon-cache ] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor update-desktop-database -q 2> /dev/null
-}