blob: ea289afa36dfa8a0b84567a17104d86a886db38b (
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
|
# Contributor: lantw44 (at) gmail (dot) com
pkgname=guile-lzlib
pkgver=0.3.0
pkgrel=1
pkgdesc='Guile bindings for lzlib'
arch=('x86_64' 'i686' 'armv7h')
url='https://notabug.org/guile-lzlib/guile-lzlib'
license=('GPL3')
depends=('guile' 'lzlib')
source=("${pkgname}-${pkgver}.tar.gz::https://notabug.org/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('a7f99c8d2a143e05ea22db2dc8b9ce6c27cae942162b45ee3015ed9027af0ff2')
build() {
cd "${srcdir}/${pkgname}"
autoreconf -fi
./configure --prefix=/usr
make
}
check() {
cd "${srcdir}/${pkgname}"
make check
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" install
}
|