contrib/libconfig/Pkgfile

26 lines
580 B
Plaintext
Raw Normal View History

2017-06-22 00:32:12 +02:00
# Description: C/C++ configuration file library.
2021-02-24 12:14:06 +01:00
# URL: https://github.com/hyperrealm/libconfig
# Maintainer: Tim Biermann, tbier at posteo dot de
2017-06-22 00:32:12 +02:00
name=libconfig
version=1.7.3
2017-06-22 00:32:12 +02:00
release=1
2019-04-10 01:27:10 +02:00
source=(https://github.com/hyperrealm/libconfig/archive/v$version/$name-v$version.tar.gz)
2017-06-22 00:32:12 +02:00
build() {
cd $name-$version
autoreconf -i
2017-06-22 00:32:12 +02:00
# dont fail without makeinfo
sed -i 's|all: all-am|all:|1' doc/Makefile.in
sed -i 's|install: install-am|install:|1' doc/Makefile.in
2021-02-24 12:14:06 +01:00
./configure --prefix=/usr \
--disable-static \
--disable-examples
2017-06-22 00:32:12 +02:00
make
make DESTDIR=$PKG install
}