#Maintainer: George Vlahavas pkgname=libconfig pkgver=1.7.3 pkgrel=1gv source=("https://github.com/hyperrealm/libconfig/archive/refs/tags/v${pkgver}.tar.gz") docs=("AUTHORS" "TODO" "NEWS" "ChangeLog" "INSTALL" "README" "COPYING.LIB") url=https://github.com/hyperrealm/libconfig slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libconfig (C/C++ Configuration File Library)" "Libconfig is a simple library for processing structured" "configuration files. This file format is more compact and more" "readable than XML. And unlike XML, it is type-aware, so it is not" "necessary to do string parsing in application code." "Libconfig is very compact - a fraction of the size of the expat XML" "parser library. This makes it well-suited for memory-constrained" "systems like handheld devices." ) build() { cd $startdir/src/${pkgname}-${pkgver} autoreconf -fiv ./configure \ --prefix=/usr \ --libdir=/usr/lib$LIBDIRSUFFIX \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ --disable-static \ --build=$arch-slackware-linux make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg }