# Maintainer: Limao Luo # Contributor: Marco A Rojas # Contributor: Pavel Larev pkgname=apache-tools pkgver=2.4.46 pkgrel=1 pkgdesc="Useful Apache tools - htdigest, htpasswd, ab, htdbm" arch=("i686" "x86_64" "armv6h" "armv7h" "aarch64") url="http://httpd.apache.org/" license=("Apache") depends=("apr-util" "pcre") makedepends=("apr-util") conflicts=(apache) source=(http://www.apache.org/dist/httpd/httpd-$pkgver.tar.bz2 $pkgname-Makefile.patch) sha256sums=('740eddf6e1c641992b22359cabc66e6325868c3c5e2e3f98faf349b61ecf41ea' '2dc48d34773b0c873d10e3542f77a4f7b50d5fb9bd8c52e3bb28b76ff9587f3f') prepare() { cd httpd-$pkgver/ patch -p1 -i ../$pkgname-Makefile.patch } build() { cd httpd-$pkgver/ ./configure --prefix=/usr --sbindir=/usr/bin --with-pcre=/usr make -C support } package() { make -C httpd-$pkgver/support DESTDIR="$pkgdir" install }