summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2020-10-04 15:35:51 (GMT)
committerBritney Fransen <brfransen@gmail.com>2020-10-04 15:35:51 (GMT)
commit286c9aa68fa8ba265b99531e17f1708f65276c32 (patch)
tree9a4a37fc8a9d1e515abc54a34dee52c2a5944a09
parentc9ba162645be16baa58ef72fb27388516fb4cc24 (diff)
downloadlinhes_pkgbuild-286c9aa68fa8ba265b99531e17f1708f65276c32.zip
linhes_pkgbuild-286c9aa68fa8ba265b99531e17f1708f65276c32.tar.gz
linhes_pkgbuild-286c9aa68fa8ba265b99531e17f1708f65276c32.tar.bz2
json-c: move to core
-rw-r--r--abs/extra/json-c/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/abs/extra/json-c/PKGBUILD b/abs/extra/json-c/PKGBUILD
deleted file mode 100644
index d4795e3..0000000
--- a/abs/extra/json-c/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
-# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
-# Contributor: congyiwu <congyiwu AT gmail DOT com>
-
-pkgname=json-c
-pkgver=0.13
-pkgrel=1
-pkgdesc='A JSON implementation in C'
-url='https://github.com/json-c/json-c/wiki'
-license=(MIT)
-arch=('x86_64')
-depends=('glibc')
-source=('https://github.com/json-c/json-c/archive/json-c-0.13-20171207.tar.gz')
-sha256sums=('26e642456caab38aa9459279b9712ffec52f751e9f46641d28461c244bd6bae6')
-
-build() {
- cd $pkgname-$pkgname-$pkgver-20171207
- CFLAGS="$CFLAGS -Wno-error"
- ./configure --prefix=/usr --disable-static
- make
-}
-
-check() {
- cd $pkgname-$pkgname-$pkgver-20171207
- make check
-}
-
-package() {
- cd $pkgname-$pkgname-$pkgver-20171207
- make DESTDIR="$pkgdir" install
- install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}