From 9f1deab7a8bb37802d7d30f6daf487a4853c315b Mon Sep 17 00:00:00 2001 From: Leo Date: Fri, 7 Jun 2019 15:46:45 -0300 Subject: [PATCH] main/libfastjson: fix url --- main/libfastjson/APKBUILD | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/main/libfastjson/APKBUILD b/main/libfastjson/APKBUILD index b43e741157..9bbd2d786b 100644 --- a/main/libfastjson/APKBUILD +++ b/main/libfastjson/APKBUILD @@ -2,25 +2,29 @@ # Maintainer: Ashley Sommer pkgname=libfastjson pkgver=0.99.8 -pkgrel=1 +pkgrel=2 pkgdesc="A fork of the json-c library for rsyslog, optimized for liblognorm processing." -url="http://www.rsyslog.com/" +url="https://www.rsyslog.com/" arch="all" license="MIT" makedepends="autoconf automake libtool" subpackages="$pkgname-dev $pkgname-dbg" source="$pkgname-$pkgver.tar.gz::https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" +prepare() { + cd "$builddir" + ./autogen.sh +} build() { - cd "$builddir" - sh autogen.sh \ + cd "$builddir" + ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ --sysconfdir=/etc \ - --mandir=/usr/share/man + --mandir=/usr/share/man \ + --disable-static make } -- GitLab