summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorP.A. López-Valencia2016-04-27 09:43:37 -0500
committerP.A. López-Valencia2016-04-27 09:43:37 -0500
commitdd2cb6e7e76099e058e85e628610710c50a03a02 (patch)
tree8928080862f30aa1f46f90fe3b583eb744eb740a
parentfa1c5f464a3d4d094d2c08779b7707f229845095 (diff)
downloadaur-dd2cb6e7e76099e058e85e628610710c50a03a02.tar.gz
Finally dropping that ugly install file. Hooks baby!
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
-rw-r--r--emacs-git.install32
3 files changed, 4 insertions, 38 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 733b84d0a105..f38d6f6e6347 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = emacs-git
pkgdesc = GNU Emacs. Version 25 development and maintenance branch.
- pkgver = 25.1.50.r125750
- pkgrel = 2
+ pkgver = 25.1.50.r125751
+ pkgrel = 1
url = http://www.gnu.org/software/emacs/
- install = emacs-git.install
arch = i686
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 342f2f1b79bf..32e610a7242b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -44,8 +44,8 @@ DOCS_PDF= # Generate and install pdf documentation.
#######################################################################
pkgname=emacs-git
-pkgver=25.1.50.r125750
-pkgrel=2
+pkgver=25.1.50.r125751
+pkgrel=1
pkgdesc="GNU Emacs. Version 25 development and maintenance branch."
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/emacs/"
@@ -62,7 +62,6 @@ if [[ $DOCS_PDF = "YES" ]]; then makedepends+=('texlive-core'); fi
#######################################################################
conflicts=('emacs')
provides=('emacs')
-install="$pkgname".install
source=("$pkgname::git://git.savannah.gnu.org/emacs.git")
md5sums=('SKIP')
diff --git a/emacs-git.install b/emacs-git.install
deleted file mode 100644
index 35c97cc56fa1..000000000000
--- a/emacs-git.install
+++ /dev/null
@@ -1,32 +0,0 @@
-ICON_PATH=usr/share/icons/hicolor
-INFO_DIR=usr/share/info
-
-INFO_FILES=(ada-mode auth autotype bovine 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 htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode
-org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail
-speedbar srecode tramp url vip viper widget wisent woman)
-
-post_install() {
- gtk-update-icon-cache -q -t -f ${ICON_PATH}
- update-desktop-database -q
-
- [[ -x usr/bin/install-info ]] || return 0
- for f in "${INFO_FILES[@]}"; do
- install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- gtk-update-icon-cache -q -t -f ${ICON_PATH}
- update-desktop-database -q
-
- [[ -x usr/bin/install-info ]] || return 0
- for f in "${INFO_FILES[@]}"; do
- install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
- done
-}