diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/augeas |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/augeas')
-rw-r--r-- | community/augeas/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/augeas/PKGBUILD b/community/augeas/PKGBUILD new file mode 100644 index 000000000..51cd9aa07 --- /dev/null +++ b/community/augeas/PKGBUILD @@ -0,0 +1,26 @@ +# Contributor: Thomas S Hatch <thatch45@gmail.com> +# Contributor: Jon Nordby <jononor@gmail.com> + +pkgname=augeas +pkgver=0.8.0 +pkgrel=1 +pkgdesc="A configuration editing tool that parses config files and transforms them into a tree" +arch=('i686' 'x86_64') +license=('LGPL') +url="http://augeas.net" +depends=('readline') +makedepends=('gcc' 'bison' 'flex') +options=(!libtool) +source=(http://augeas.net/download/$pkgname-$pkgver.tar.gz) +md5sums=('e425bcfc46fd5b18473a4ff47c2878d3') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR=$pkgdir install +} |