summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse2016-09-26 13:41:40 +0200
committerChristian Hesse2016-09-26 13:41:40 +0200
commit2285f13c9251935d5a72cb7b5b97083c8ab85762 (patch)
tree485e371673b6a7e66bc11823066505c4c41ead0a
parent418d752f3d6c3a87e3ec2e403074422977c5402d (diff)
downloadaur-2285f13c9251935d5a72cb7b5b97083c8ab85762.tar.gz
commit zsh-git 5.2.r502.ge35dcae-1
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--zsh-doc.install20
3 files changed, 3 insertions, 25 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3023d948447f..c17da74b313c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
# Generated by mksrcinfo v8
-# Wed Jan 13 08:47:29 UTC 2016
+# Mon Sep 26 11:41:40 UTC 2016
pkgbase = zsh-git
- pkgver = 5.2.r72.ga8a00be
+ pkgver = 5.2.r502.ge35dcae
pkgrel = 1
url = http://www.zsh.org/
arch = i686
@@ -31,7 +31,6 @@ pkgname = zsh-git
pkgname = zsh-doc-git
pkgdesc = Info, HTML and PDF format of the ZSH documentation
- install = zsh-doc.install
provides = zsh-doc
conflicts = zsh-doc
diff --git a/PKGBUILD b/PKGBUILD
index 6cc9a4e84f50..3b6bd90bfb8e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
_pkgbase=zsh
pkgbase=zsh-git
pkgname=('zsh-git' 'zsh-doc-git')
-pkgver=5.2.r72.ga8a00be
+pkgver=5.2.r502.ge35dcae
pkgrel=1
arch=('i686' 'x86_64')
url='http://www.zsh.org/'
@@ -101,7 +101,6 @@ package_zsh-doc-git() {
pkgdesc='Info, HTML and PDF format of the ZSH documentation'
conflicts=('zsh-doc')
provides=('zsh-doc')
- install=zsh-doc.install
cd "${srcdir}/${_pkgbase}"
make DESTDIR="${pkgdir}/" install.info install.html
diff --git a/zsh-doc.install b/zsh-doc.install
deleted file mode 100644
index 2582eae537df..000000000000
--- a/zsh-doc.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(zsh.info zsh.info-1 zsh.info-2 zsh.info-3 zsh.info-4 zsh.info-5 zsh.info-6)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file.gz $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
- done
-}