summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 272aea2a0a1496360880fab146be7205ee9a94db (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Maintainer: aksr <aksr at t-com dot me>
pkgname=spitbol-git
pkgver=4.0d.r1381.76b7ada
pkgrel=1
pkgdesc='An extremely high performance implementation of the SNOBOL4 language that brings raw power and speed to non-numeric computation.'
url='https://github.com/spitbol/x64'
arch=('i686' 'x86_64')
license=('GPL3')
makedepends=('git' 'nasm')
source=("$pkgname::git+$url" 'git+https://github.com/spitbol/spitbol-docs')
md5sums=('SKIP' 'SKIP')

pkgver() {
	cd "$srcdir/$pkgname"
	printf "%s.r%s.%s" \
	"$(git describe --tags | sed 's/^[Vv]//;s/-.*//')" \
	"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "$srcdir/${pkgname}"
	make clean
	make bootsbl
	make BASEBOL=./bootsbl spitbol
	make bininst
}

#check() {
#	cd "$srcdir/${pkgname}"
#	./sanity-check
#	cd "$srcdir/${pkgname}/test"
#	math_tests.sh
#}

package() {
	cd "$srcdir/${pkgname}"
	sed -i 's/sudo//g' Makefile
	make destprefix="$pkgdir/usr" \
	     DEMODEST="$pkgdir/usr/share/doc/${pkgname%-*}/demos" \
	     MANDEST="$pkgdir/usr/share/man/man1" install
	install -D -m644 README.md $pkgdir/usr/share/doc/${pkgname%-*}/README.md
	cd "$srcdir/${pkgname%-*}-docs"
	install -D -m644 green-book.pdf $pkgdir/usr/share/doc/${pkgname%-*}/green-book.pdf
	install -D -m644 spitbol-manual-v3.7.pdf $pkgdir/usr/share/doc/${pkgname%-*}/spitbol-manual-v3.7.pdf
}