blob: 4fc5b095fc55eb01ba9ae205d44353b4554fb8a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $Id: PKGBUILD 226630 2017-05-03 13:48:02Z spupykin $
# Maintainer: Geballin - Guillaume Ballin <macniaque at free dot fr>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
pkgname=bwidget
pkgver=1.10.1
pkgrel=1
pkgdesc="A suite of megawidgets for Tk"
arch=('any')
url="https://wiki.tcl.tk/2251"
license=('GPL')
depends=('bash' 'tcl')
source=("http://downloads.sourceforge.net/project/tcllib/BWidget/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('4aea02f38cf92fa4aa44732d4ed98648df839e6537d6f0417c3fe18e1a34f880')
package() {
cd "${srcdir}"
install -d "${pkgdir}"/usr/lib/tcl8.6
cp -r bwidget-$pkgver "${pkgdir}"/usr/lib/tcl8.6/
chmod -R 755 "${pkgdir}"/usr/lib/tcl8.6/*
}
|