updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / jimtcl / PKGBUILD
blobb78e1bee2dc8ef7d74075f269a118a98be6a353f
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=jimtcl
8 pkgver=0.72
9 pkgrel=1
10 pkgdesc='A small-footprint implementation of the Tcl programming language'
11 arch=(i686 x86_64)
12 url="http://jim.berlios.de"
13 license=('BSD')
14 source=(https://github.com/msteveb/$pkgname/tarball/$pkgver)
15 md5sums=('a85cb7e07be192be517366295f438bb1')
17 build() {
18   cd "$srcdir/msteveb-jimtcl-b9db846/"
19   ./configure --prefix=/usr
20   make
23 check() {
24   cd "$srcdir/msteveb-jimtcl-b9db846"
25   make -k check
28 package() {
29   cd "$srcdir/msteveb-jimtcl-b9db846/"
30   make DESTDIR="$pkgdir/" install
33 # vim:set ts=2 sw=2 et: