blob: 8852b5c39879d65afbb62c9b77d9c3aff640739b (
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
|
# Forked from guile-json 1.2.0 PKGBUILD
# Maintainer (AUR): lantw44
# Contributor (AUR): holos
# Contributor (AUR): tantalum
# parabola changes and rationale:
# no changes.
pkgname=guile-json1
_pkgname=guile-json
pkgver=1.3.2
pkgrel=1
pkgdesc='JSON module for Guile (Version 1)'
arch=('x86_64' 'i686' 'armv7h')
url='https://savannah.nongnu.org/projects/guile-json'
license=('GPL3')
depends=('guile')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=("https://download.savannah.gnu.org/releases/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('33f94ea73c478faeca0d56c6d4c12591cb18956476da314df9d1e464c2fade54')
build() {
cd "$_pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$_pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|