blob: 8bae8a1d8fd14e28b63a79b0babf14cd3959820b (
plain)
1 # Description: A C library for parsing configuration files
2 # URL: https://github.com/williamh/dotconf
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Jose V Beneyto, sepen at crux dot nu
5 # Depends on:
6
7 name=dotconf
8 version=1.3
9 release=1
10 source=(https://github.com/williamh/$name/archive/v$version.zip)
11
12 build() {
13 cd $name-$version
14
15 autoreconf -i
16 ./configure --prefix=/usr
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/share
22 }
|