blob: b829aab2bd3615b7c05ba4be3500e2f52a07bdac (
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
|
# Maintainer: lantw44 (at) gmail (dot) com
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
}
|