packager="Great-OS Team"
maintainer="sipo"

description="C-library for parsing configuration files"
url="https://github.com/martinh/libconfuse"

name=confuse
version=3.3
release=2

source=(https://github.com/martinh/libconfuse/releases/download/v$version/$name-$version.tar.gz)

build(){

  cd ${name}-${version}
  ./configure --prefix=/usr --enable-shared
  make
}


package() {

  cd ${name}-${version}
  make DESTDIR="${PKG}" install
}
