# $Id$ # Maintainer: Allen Zhong # Contributor: Bartłomiej Piotrowski # Contributor: Sébastien Luttringer # Contributor: Sergej Pupykin # Contributor: Miroslaw Szot pkgname=nginx-accesskey _pkgname=nginx pkgver=1.12.2 pkgrel=1 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, with ngx_http_accesskey_module.' arch=('x86_64') url='http://nginx.org' license=('custom') depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap') makedepends=('git') backup=('etc/nginx/fastcgi.conf' 'etc/nginx/fastcgi_params' 'etc/nginx/koi-win' 'etc/nginx/koi-utf' 'etc/nginx/mime.types' 'etc/nginx/nginx.conf' 'etc/nginx/scgi_params' 'etc/nginx/uwsgi_params' 'etc/nginx/win-utf' 'etc/logrotate.d/nginx') install=nginx.install source=($url/download/nginx-$pkgver.tar.gz nginx-accesskey::git+https://github.com/Martchus/nginx-accesskey.git service logrotate) sha256sums=('305f379da1d5fb5aefa79e45c829852ca6983c7cd2a79328f8e084a324cf0416' 'SKIP' '113bb2c530afd7f81ebccb42e6fa293fd87be2d87c99a32623097c6b97157297' '8700222687c1848f7669faaa23708adc92d6634de156b8935b5b9a9b062ce6e9') build() { cd "$srcdir" cd "$srcdir"/$_pkgname-$pkgver ./configure \ --prefix=/etc/nginx \ --conf-path=/etc/nginx/nginx.conf \ --sbin-path=/usr/bin/nginx \ --pid-path=/run/nginx.pid \ --lock-path=/run/lock/nginx.lock \ --user=http \ --group=http \ --http-log-path=/var/log/nginx/access.log \ --error-log-path=stderr \ --http-client-body-temp-path=/var/lib/nginx/client-body \ --http-proxy-temp-path=/var/lib/nginx/proxy \ --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \ --http-scgi-temp-path=/var/lib/nginx/scgi \ --http-uwsgi-temp-path=/var/lib/nginx/uwsgi \ --with-compat \ --with-file-aio \ --with-http_addition_module \ --with-http_auth_request_module \ --with-http_dav_module \ --with-http_degradation_module \ --with-http_flv_module \ --with-http_geoip_module \ --with-http_gunzip_module \ --with-http_gzip_static_module \ --with-http_mp4_module \ --with-http_realip_module \ --with-http_secure_link_module \ --with-http_slice_module \ --with-http_ssl_module \ --with-http_stub_status_module \ --with-http_sub_module \ --with-http_v2_module \ --with-mail \ --with-mail_ssl_module \ --with-pcre-jit \ --with-stream \ --with-stream_geoip_module \ --with-stream_realip_module \ --with-stream_ssl_module \ --with-stream_ssl_preread_module \ --with-threads \ --add-module="$srcdir"/nginx-accesskey \ --with-cc-opt="$CFLAGS $CPPFLAGS" \ --with-ld-opt="$LDFLAGS" make } package() { cd $_pkgname-$pkgver make DESTDIR="$pkgdir" install sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz for i in ftdetect indent syntax; do install -Dm644 contrib/vim/$i/nginx.vim \ "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim" done }