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
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')
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"
32 cd $srcdir/$_pkgname-$pkgver
35 /usr/sbin/apxs -c -o $_pkgname.so $_pkgname.c
39 cd $srcdir/$_pkgname-$pkgver
41 install -Dm444 .libs/$_pkgname.so $pkgdir/$_MODDIR/$_pkgname.so
44 install -Dm444 $_pkgname.html $pkgdir/$_DOCDIR/$_pkgname.html
47 # vim:set ts=2 sw=2 et: