blob: 1a99102c499205d119e20e9b395f01649b3ddbf4 (
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
27
28
29
30
31
32
33
34
35
36
37
38
|
# $Id$
# Maintainer: Martchus <martchus@gmx.net>
pkgname=nginx-mod-dav-ext
pkgver=3.0.0
pkgrel=16
_dirname="nginx-dav-ext-module-$pkgver"
pkgdesc='NGINX WebDAV missing commands support'
arch=('x86_64')
depends=('libxslt')
makedepends=('nginx' 'nginx-src')
url='https://github.com/arut/nginx-dav-ext-module'
license=('BSD')
source=("$pkgname-$pkgver::https://github.com/arut/nginx-dav-ext-module/archive/v${pkgver}.tar.gz")
sha256sums=('d2499d94d82d4e4eac8425d799e52883131ae86a956524040ff2fd230ef9f859')
prepare() {
cd "$srcdir/$_dirname"
}
build() {
cp -r /usr/src/nginx .
cd "$srcdir"/nginx
./configure --with-compat --with-http_dav_module --add-dynamic-module="../$_dirname"
make modules
}
package() {
_nginxver=$(pacman -Q nginx | sed 's|nginx \([^-]*\).*|\1|')
depends+=("nginx=$_nginxver")
install -Dm755 "$srcdir/$_dirname/LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
cd "$srcdir"/nginx/objs
for mod in ngx_*.so; do
install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
done
}
|