blob: 58a234a1e76d4e3d25bce83e4a7ecd3621657dab (
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
39
40
|
# Maintainer: Jeremy Kescher <jeremy@kescher.at>
pkgname=nginx-mainline-mod-headers-more-git
pkgver=0.33.r15.ge536bc5
pkgrel=1
pkgdesc="Set and clear input and output headers (module for mainline nginx)"
arch=('i686' 'x86_64')
depends=('nginx-mainline')
makedepends=('nginx-mainline-src')
url="https://github.com/openresty/headers-more-nginx-module"
license=('BSD')
sha256sums=('SKIP')
source=(headers-more-nginx-module::git+https://github.com/openresty/headers-more-nginx-module.git)
pkgver() {
cd headers-more-nginx-module
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
mkdir -p build
cd build
ln -sf /usr/src/nginx/auto
ln -sf /usr/src/nginx/src
}
build() {
cd build
/usr/src/nginx/configure --with-compat --add-dynamic-module="$srcdir"/headers-more-nginx-module
make modules
}
package() {
cd build/objs
for mod in *.so; do
install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
done
}
|