mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
24 lines
703 B
Bash
24 lines
703 B
Bash
# Maintainer: Michael Schubert <mschu.dev at gmail> github.com/mschubert/PKGBUILDs
|
|
# Contributor: Thomas Dziedzic
|
|
# Contributor: Mihai Militaru <mihai dot militaru at xmpp dot ro>
|
|
pkgname=tklib
|
|
pkgver=0.7
|
|
pkgrel=2
|
|
pkgdesc='Tklib specializes in utilities for GUI programming.'
|
|
arch=('i686' 'x86_64')
|
|
url="https://core.tcl-lang.org/tklib/home"
|
|
license=('GPL')
|
|
depends=('tk' 'tcllib')
|
|
source=(https://github.com/tcltk/tklib/archive/refs/tags/tklib-$pkgver.tar.gz)
|
|
sha256sums=('93890db81a5b0cdb62c386265ec4fcdaab60824e8e6e882c7fecc69ff49afc66')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make all
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|