blob: 8f5939f4ecdeec217f73cb4ece4a8dc3f302d717 (
plain) (
tree)
|
|
# Maintainer:
pkgname=libconfig
pkgver=1.7.2
pkgrel=0
pkgdesc="Library for manipulating structured configuration files"
url="http://www.hyperrealm.com/libconfig/libconfig.html"
arch="all"
license="LGPL-2.1+"
depends=""
makedepends="autoconf automake libtool texinfo"
subpackages="$pkgname-doc $pkgname-dev $pkgname++:_cxx"
source="$pkgname-$pkgver.tar.gz::https://github.com/hyperrealm/$pkgname/archive/v$pkgver.tar.gz"
prepare() {
cd "$builddir"
default_prepare
autoreconf -vif
}
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make -j1 DESTDIR="$pkgdir/" install
}
_cxx() {
pkgdesc="C++ bindings for libconfig"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libconfig++.so.* "$subpkgdir"/usr/lib/
}
sha512sums="9df57355c2d08381b4a0a6366f0db3633fbe8f73c2bb8c370c040b0bae96ce89ee4ac6c17a5a247fed855d890fa383e5b70cb5573fc9cfc62194d5b94e161cee libconfig-1.7.2.tar.gz"
|