summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 462e1326db27266c581b8ac26c36895f43d68bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: holos
# Contributor: tantalum

pkgname=guile-json
pkgrel=1
pkgver=1.2.0
pkgdesc='JSON module for Guile'
url="https://github.com/aconchillo/guile-json"
arch=('any')
license=('LGPL')
source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('89817369f8534d7044818c48c749e1769a4c7e7ac3cda921feeac2d3085af695')

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

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