summaryrefslogtreecommitdiff
path: root/community/augeas/PKGBUILD
blob: 9367bc7f78cecd7028778b6c2a1e5b59f3598325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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' 'mips64el')
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
}