diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-28 16:53:19 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-28 16:53:19 +0100 |
commit | 01346da4de50d9eda2660653fcaae6c1abfaa28a (patch) | |
tree | bd7bb7e3f004777c788f809c5a5a10a69839be13 /extra/json-c/PKGBUILD | |
parent | 5bc312c4c7af74bbbb6042c5856bac6e53efa32c (diff) | |
parent | 1b9f6dc846379470b620b5dbb9d4d7acd1de148c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/fcitx-chewing/PKGBUILD
community/fcitx-cloudpinyin/PKGBUILD
community/fcitx-rime/PKGBUILD
community/linux-tools/PKGBUILD
community/lxpanel/PKGBUILD
community/pdns/PKGBUILD
core/bash/PKGBUILD
core/gcc/PKGBUILD
core/glibc/PKGBUILD
extra/json-c/PKGBUILD
extra/liblouis/PKGBUILD
extra/live-media/PKGBUILD
extra/samba/PKGBUILD
extra/transmission/PKGBUILD
social/opentracker/PKGBUILD
Diffstat (limited to 'extra/json-c/PKGBUILD')
-rw-r--r-- | extra/json-c/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/extra/json-c/PKGBUILD b/extra/json-c/PKGBUILD index 9972a71a1..a7a33e022 100644 --- a/extra/json-c/PKGBUILD +++ b/extra/json-c/PKGBUILD @@ -1,25 +1,26 @@ +# $Id: PKGBUILD 176084 2013-01-27 11:24:26Z ioni $ # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> # Contributor: congyiwu <congyiwu AT gmail DOT com> pkgname=json-c -pkgver=0.9 -pkgrel=1.1 +pkgver=0.10 +pkgrel=1 pkgdesc="A JSON implementation in C" -url="http://oss.metaparadigm.com/json-c/" +url="https://github.com/json-c/json-c/wiki" license=("MIT") arch=('i686' 'x86_64' 'mips64el') depends=('glibc') -source=(http://oss.metaparadigm.com/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('3a13d264528dcbaf3931b0cede24abae') +source=(https://github.com/downloads/$pkgname/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('a4edc79410eb894f08d7d52ca9f88732') options=(!libtool) build() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } |