mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
29 lines
977 B
Bash
29 lines
977 B
Bash
# Maintainer: Gabriel Souza Franco <Z2FicmllbGZyYW5jb3NvdXphQGdtYWlsLmNvbQ==>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: dtw <dibble.at.thewrecker.dot.net>
|
|
# Contributor: Mathieu Gauthier <mathgl@freesurf.fr>
|
|
# Contributor: Pawel Bogur <jid:smeagol@uaznia.net>
|
|
|
|
pkgname=tcllib
|
|
pkgver=1.20
|
|
pkgrel=1
|
|
pkgdesc="Set of pure-Tcl extensions."
|
|
arch=('any')
|
|
url="http://core.tcl.tk/tcllib/"
|
|
license=('bsd')
|
|
depends=('tcl')
|
|
source=("https://core.tcl-lang.org/tcllib/uv/tcllib-$pkgver.tar.gz")
|
|
sha256sums=('e3b097475bcb93c4439df4a088daa59592e1937beee2a2c8495f4f0303125d71')
|
|
|
|
package(){
|
|
cd "$srcdir"/tcllib-$pkgver
|
|
tclsh installer.tcl -pkg-path "$pkgdir"/usr/lib/tcllib \
|
|
-app-path "$pkgdir"/usr/bin \
|
|
-nroff-path "$pkgdir"/usr/share/man/mann \
|
|
-no-examples -no-html \
|
|
-no-wait -no-gui
|
|
install -Dm644 license.terms "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
for manp in graph; do
|
|
mv "$pkgdir"/usr/share/man/mann/{,tcllib-}$manp.n
|
|
done
|
|
}
|