summaryrefslogtreecommitdiff
path: root/pcr/guile-quickcheck/PKGBUILD
blob: ba5567bfd60465c7056eb6a8b4f346c242e894e2 (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
# Maintainer (aur): lantw44 (at) gmail (dot) com
# Maintainer: Parabola Hackers <dev@lists.parabola.nu>

# parabola changes and rationale:
#  no changes.

pkgname=guile-quickcheck
pkgver=0.1.0
pkgrel=1
pkgdesc='Randomized property-based testing for Guile'
arch=('x86_64' 'i686' 'armv7h')
url='https://ngyro.com/software/guile-quickcheck.html'
license=('GPL3')
depends=('guile')
source=("https://files.ngyro.com/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('cb99ac5be99b43b61eb9c452d953543e890e2a83fc83acac289d94316888bc0e')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	./configure --prefix=/usr
	make
}

check() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make check
}

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