# $Id: PKGBUILD 59250 2011-11-22 01:03:57Z ebelanger $ # Contributor: Thomas S Hatch # Contributor: Jon Nordby pkgname=augeas pkgver=0.9.0 pkgrel=1 pkgdesc="A configuration editing tool that parses config files and transforms them into a tree" arch=('i686' 'x86_64' 'mips64el') url="http://augeas.net" license=('LGPL') depends=('readline' 'gcc-libs') options=('!libtool') source=(http://augeas.net/download/$pkgname-$pkgver.tar.gz) md5sums=('5ef0ce53ce4c75f59ab2523506731084') build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install }