summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriel Souza Franco2019-06-14 14:30:56 +0200
committerGabriel Souza Franco2019-06-14 14:30:56 +0200
commit4ba77103b9b2a8fc857fada7511edc73ad521f01 (patch)
treed853f2014357edfc8366e89e4b1337cf13e1cb9e
parenta3d4f84380492ceba381e95773f05561c44b79cd (diff)
downloadaur-4ba77103b9b2a8fc857fada7511edc73ad521f01.tar.gz
Rename man page to avoid conflict with blt
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 05d76fd9c8b9..a1c137d1c129 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = tcllib
pkgdesc = Set of pure-Tcl extensions.
pkgver = 1.19
- pkgrel = 1
+ pkgrel = 2
url = http://core.tcl.tk/tcllib/
arch = any
license = bsd
diff --git a/PKGBUILD b/PKGBUILD
index e36a3b3f1872..6d94d98a5d9a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgname=tcllib
pkgver=1.19
-pkgrel=1
+pkgrel=2
pkgdesc="Set of pure-Tcl extensions."
arch=('any')
url="http://core.tcl.tk/tcllib/"
@@ -23,5 +23,7 @@ package(){
-no-examples -no-html \
-no-wait -no-gui
install -Dm644 license.terms "$pkgdir"/usr/share/licenses/$pkgname/COPYING
- rm -f "$pkgdir"/usr/share/man/mann/{try,string,variable,zlib,coroutine}.n
+ for manp in graph; do
+ mv "$pkgdir"/usr/share/man/mann/{,tcllib-}$manp.n
+ done
}