opt/json-c/Pkgfile

18 lines
470 B
Plaintext
Raw Normal View History

2012-01-15 16:30:56 +01:00
# Description: JSON implementation in C
2013-06-11 18:00:31 +02:00
# URL: https://github.com/json-c/json-c/wiki
2012-01-15 16:30:56 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
name=json-c
2015-05-07 15:40:12 +02:00
version=0.12
2012-01-15 16:30:56 +01:00
release=1
2015-05-07 15:40:12 +02:00
source=(https://s3.amazonaws.com/json-c_releases/releases/$name-$version.tar.gz)
2012-01-15 16:30:56 +01:00
build() {
2015-05-07 15:40:12 +02:00
cd $name-$version
2014-06-20 18:04:09 +02:00
sed -i '/^AM_CFLAGS/s/$/ -Wno-error=unused-but-set-variable/' Makefile.am.inc
autoreconf -i
2012-01-15 16:30:56 +01:00
./configure --prefix=/usr
make -j1
2012-01-15 16:30:56 +01:00
make DESTDIR=$PKG install
}