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

# parabola changes and rationale:
#  no changes.

pkgname=guile-sqlite3
pkgver=0.1.3
pkgrel=1
pkgdesc='Guile bindings for the SQLite3 database engine'
arch=('x86_64' 'i686' 'armv7h')
url="https://notabug.org/guile-sqlite3/guile-sqlite3"
license=('LGPL3')
depends=('guile' 'sqlite3')
source=("${pkgname}-${pkgver}.tar.gz::https://notabug.org/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('158cb82958c6329319f911412999ea125980f327f54185bf0dad271d6f8f45c2')

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

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

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