summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Jaara2016-07-16 12:27:07 +0300
committerJesse Jaara2016-07-16 12:27:07 +0300
commit2d8f395e34f6ecaa38471ab37c5a5e5f3153ddf7 (patch)
tree8b5d1e6a3c9e95ed87815347acc927e2e72a6f31
parent53f20575c88613e78e6b395942786c1dd63fa07e (diff)
downloadaur-2d8f395e34f6ecaa38471ab37c5a5e5f3153ddf7.tar.gz
Let ALPM hooks do the texinfo install magick.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD2
-rw-r--r--malaga.install14
3 files changed, 4 insertions, 16 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2190d1248de5..b683c698c13e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Sat Jul 16 09:26:41 UTC 2016
pkgbase = malaga
pkgdesc = A software for the development and application of grammars that are used for the analysis of words and sentences of natural languages.
pkgver = 7.12
- pkgrel = 6
+ pkgrel = 7
url = http://home.arcor.de/bjoern-beutel/malaga/
install = malaga.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index a2152aa5743c..14d9e23455de 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=malaga
pkgver=7.12
-pkgrel=6
+pkgrel=7
pkgdesc="A software for the development and application of grammars that are used for the analysis of words and sentences of natural languages."
arch=('i686' 'x86_64')
url="http://home.arcor.de/bjoern-beutel/malaga/"
diff --git a/malaga.install b/malaga.install
index 4a829c68067f..b6f03b860ff9 100644
--- a/malaga.install
+++ b/malaga.install
@@ -1,11 +1,4 @@
-infodir=/usr/share/info
-filelist=(malaga.info)
-
post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
echo ">>> If you are using Emacs, add the line"
echo ">>> (require 'malaga \".../malaga-7.12/malaga.el\")"
echo ">>> to the file \".emacs\" in your home directory, "
@@ -21,11 +14,4 @@ post_upgrade() {
post_install $1
}
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
# vim:set ts=2 sw=2 et: