diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2020-02-28 00:36:39 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2020-02-28 00:36:39 +0800 |
commit | b144a5fdcd79b9ddd5d589dbae5f4d76c0af3990 (patch) | |
tree | c22f3463670fe5a56adbdddb96806bc90feaad02 | |
parent | f51af96055a339e73c318541cd5f766b23ab316a (diff) | |
download | AUR4-PKGBUILD-b144a5fdcd79b9ddd5d589dbae5f4d76c0af3990.tar.gz AUR4-PKGBUILD-b144a5fdcd79b9ddd5d589dbae5f4d76c0af3990.tar.zst AUR4-PKGBUILD-b144a5fdcd79b9ddd5d589dbae5f4d76c0af3990.zip |
guile-json: Merge changes from guile-json1 and fix style
-rw-r--r-- | guile-json/.SRCINFO | 13 | ||||
-rw-r--r-- | guile-json/PKGBUILD | 15 |
2 files changed, 16 insertions, 12 deletions
diff --git a/guile-json/.SRCINFO b/guile-json/.SRCINFO index 20a758f..935f428 100644 --- a/guile-json/.SRCINFO +++ b/guile-json/.SRCINFO @@ -1,11 +1,14 @@ pkgbase = guile-json pkgdesc = JSON module for Guile pkgver = 3.3.0 - pkgrel = 2 - url = https://github.com/aconchillo/guile-json - arch = any - license = LGPL - source = http://download.savannah.gnu.org/releases/guile-json/guile-json-3.3.0.tar.gz + pkgrel = 3 + url = https://savannah.nongnu.org/projects/guile-json + arch = x86_64 + arch = i686 + arch = armv7h + license = GPL3 + depends = guile + source = https://download.savannah.gnu.org/releases/guile-json/guile-json-3.3.0.tar.gz sha256sums = ceb7357308d75a9c49dabbddaecf60c9731eda3512b9275a79bb508f628c783d pkgname = guile-json diff --git a/guile-json/PKGBUILD b/guile-json/PKGBUILD index 752172a..4942e72 100644 --- a/guile-json/PKGBUILD +++ b/guile-json/PKGBUILD @@ -4,13 +4,14 @@ # Contributor: tantalum pkgname=guile-json -pkgrel=2 pkgver=3.3.0 +pkgrel=3 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") +arch=('x86_64' 'i686' 'armv7h') +url='https://savannah.nongnu.org/projects/guile-json' +license=('GPL3') +depends=('guile') +source=("https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz") sha256sums=('ceb7357308d75a9c49dabbddaecf60c9731eda3512b9275a79bb508f628c783d') build() { @@ -20,8 +21,8 @@ build() { } check(){ - cd "$pkgname-$pkgver" - make check + cd "$pkgname-$pkgver" + make check } package() { |