updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / apache-mod_macro / PKGBUILD
blob7015f3f56a11e39aef603b84f99643a029bb47a5
1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
4 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
5 ### Please ask support questions about this software in one of:
6 ###   1) The AUR comments; OR
7 ###   2) Upstream forums/maillist etc; OR
8 ###   3) The ArchLinux forums
9 ### I do not always know enough about the software itself, or don't have the
10 ### time to promptly respond to direct emails.
11 ### If you have found a problem with the package/PKGBUILD (as opposed to
12 ### the software) then please do email me or post an AUR comment.
14 pkgname=apache-mod_macro
15 _pkgname=mod_macro
16 pkgver=1.1.11
17 pkgrel=1
18 pkgdesc="DSO module for Apache that allows the definition and use of macros within apache runtime configuration files. "
19 url="http://coelho.net/mod_macro/"
20 arch=('i686' 'x86_64')
21 license=('apache')
22 depends=('apache')
23 makedepends=('apache')
24 install="$pkgname.install"
25 source=("http://coelho.net/mod_macro/$_pkgname-$pkgver.tar.gz")
26 md5sums=('dd372f31d788728cfead785eec420d22')
28 _MODDIR='usr/lib/httpd/modules'
29 _DOCDIR="usr/share/doc/$pkgname"
31 build() {
32   cd $srcdir/$_pkgname-$pkgver
34   # make the module
35   /usr/sbin/apxs -c -o $_pkgname.so $_pkgname.c
38 package() {
39   cd $srcdir/$_pkgname-$pkgver
41   install -Dm444 .libs/$_pkgname.so $pkgdir/$_MODDIR/$_pkgname.so
43   # install docs
44   install -Dm444 $_pkgname.html $pkgdir/$_DOCDIR/$_pkgname.html
47 # vim:set ts=2 sw=2 et: