summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cb1d073af811a4e67ed6a4db16ae36ab37bc078a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Contributor: perlawk
# Maintainer: aksr <aksr at t-com dot me>
pkgname=csnobol4
_pkgname=snobol4
pkgver=2.3.2
pkgrel=1
pkgdesc='A port of Macro SNOBOL4, supports the full SNOBOL4 language plus BLOCKS and SPITBOL and other extensions.'
url='https://www.regressive.org/snobol4/csnobol4/curr/'
arch=('i686' 'x86_64')
license=('BSD')
depends=('tcl' 'tk')
source=("https://ftp.regressive.org/snobol4/${_pkgname}-${pkgver}.tar.gz")
md5sums=('6e41e3228eca7c52e5cf35425e9ae408')
sha1sums=('1e0cb8030bab9c097f7905edb5c4a77779a3a3f2')
sha256sums=('41e301e9dd180d70117d64f3694f9dd54f9ed909a36a32587c8bed85ab68ac15')

build() {
	cd "$srcdir/${_pkgname}-$pkgver"
	./configure --prefix=/usr --lp64 --with-tcl=/usr/lib/tclConfig.sh
	make
}

package() {
	cd "$srcdir/${_pkgname}-$pkgver"
	make DESTDIR="$pkgdir" install
}