blob: 88d33b0553692235d503050c88bfcdb1b530d776 (
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.2.1
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 }
|