1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
3 # Contributor: Christian Berendt <christian@thorlin.de>
5 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
6 ### Please ask support questions about this software in one of:
7 ### 1) The AUR comments; OR
8 ### 2) Upstream forums/maillist etc; OR
9 ### 3) The ArchLinux forums
10 ### I do not always know enough about the software itself, or don't have the
11 ### time to promptly respond to direct emails.
12 ### If you have found a problem with the package/PKGBUILD (as opposed to
13 ### the software) then please do email me or post an AUR comment.
18 pkgdesc="automated suite of programs for configuring and maintaining Unix-like computers."
19 url="http://www.cfengine.org"
21 arch=('i686' 'x86_64')
22 depends=('openssl' 'pcre' 'postgresql-libs' 'libmysqlclient')
23 source=("${pkgname}-${pkgver}.tar.gz::http://cfengine.com/source-code/download?file=${pkgname}-${pkgver}.tar.gz")
24 md5sums=('be118dd95537221da38008845fc0d84a')
27 cd ${srcdir}/${pkgname}-${pkgver}
29 # Remove one (or both) of the --with-mysql and/or --with-postgresql
30 # lines if you want to reduce dependency chain"
35 --with-workdir=/srv/cfengine
41 cd ${srcdir}/${pkgname}-${pkgver}
43 make DESTDIR=$pkgdir install
46 # vim:set ts=2 sw=2 et: