blob: 1c9aab224d2da5f9aad360b9ff20bd2149ba2a03 (
plain)
1 # Description: C-library for parsing configuration files.
2 # URL: https://github.com/martinh/libconfuse
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=libconfuse
6 version=3.3
7 release=1
8 source=(https://github.com/martinh/$name/releases/download/v$version/${name#lib}-$version.tar.xz)
9
10 build() {
11 cd ${name#lib}-$version
12
13 ./configure \
14 --prefix=/usr \
15 --disable-nls
16
17 make
18 make DESTDIR=$PKG install
19
20 rm -r $PKG/usr/share/doc
21 rmdir $PKG/usr/share
22 }
|