23 lines
455 B
Plaintext
23 lines
455 B
Plaintext
|
# Description: A C library for parsing configuration files
|
||
|
# URL: https://github.com/williamh/dotconf
|
||
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
||
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
||
|
# Depends on:
|
||
|
|
||
|
name=dotconf
|
||
|
version=1.3
|
||
|
release=1
|
||
|
source=(https://github.com/williamh/$name/archive/v$version.zip)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
autoreconf -i
|
||
|
./configure --prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -r $PKG/usr/share
|
||
|
}
|