2017-08-20 14:52:07 +10:00
|
|
|
# Description: C-library for parsing configuration files.
|
|
|
|
# URL: https://github.com/martinh/libconfuse
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
|
|
|
|
name=libconfuse
|
2020-07-10 22:58:10 +10:00
|
|
|
version=3.3
|
2017-08-20 14:52:07 +10:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/martinh/$name/releases/download/v$version/${name#lib}-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${name#lib}-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
rmdir $PKG/usr/share
|
|
|
|
}
|