PKGBUILDs/extra/nginx/PKGBUILD

156 lines
4.6 KiB
Bash
Raw Normal View History

2014-10-17 03:36:58 +00:00
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2018-11-09 01:13:13 +00:00
# Contributor: Sébastien Luttringer
2014-10-17 03:36:58 +00:00
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Miroslaw Szot <mss@czlug.icis.pcz.pl>
# Contributor: Daniel Micay <danielmicay@gmail.com>
2015-04-18 20:00:37 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2017-04-13 12:38:14 +00:00
# - build armv7h and aarch64 with -fPIC
2014-10-17 03:36:58 +00:00
2020-01-06 13:33:07 +00:00
pkgbase=nginx
pkgname=(nginx nginx-src)
2021-11-28 21:09:41 +00:00
pkgver=1.20.2
2021-04-20 22:44:51 +00:00
pkgrel=1
2014-10-17 03:36:58 +00:00
pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
2017-11-30 14:05:06 +00:00
arch=(x86_64)
2016-11-19 00:38:33 +00:00
url='https://nginx.org'
2017-10-18 12:20:10 +00:00
license=(custom)
2020-08-24 18:17:27 +00:00
depends=(pcre zlib openssl geoip mailcap libxcrypt)
2017-10-18 12:20:10 +00:00
makedepends=(mercurial)
checkdepends=(perl perl-gd perl-io-socket-ssl perl-fcgi perl-cache-memcached
2021-04-20 22:44:51 +00:00
memcached ffmpeg)
2017-10-18 12:20:10 +00:00
backup=(etc/nginx/fastcgi.conf
etc/nginx/fastcgi_params
etc/nginx/koi-win
etc/nginx/koi-utf
etc/nginx/nginx.conf
etc/nginx/scgi_params
etc/nginx/uwsgi_params
etc/nginx/win-utf
etc/logrotate.d/nginx)
2014-10-17 03:36:58 +00:00
install=nginx.install
2016-11-19 00:38:33 +00:00
source=($url/download/nginx-$pkgver.tar.gz{,.asc}
2021-11-28 21:09:41 +00:00
hg+https://hg.nginx.org/nginx-tests#revision=34fc85598287
2014-10-17 03:36:58 +00:00
service
logrotate)
2017-10-18 12:20:10 +00:00
validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin <mdounin@mdounin.ru>
2021-11-28 21:09:41 +00:00
sha512sums=('8b65e881ea4ac6162cbf32e5e95cf47a6d5418819f8763ca4a781cffa38187dd7886d4bc195d000a7046111a27121ff25800f8645405174995247e6738b4279a'
2021-06-11 00:02:29 +00:00
'SKIP'
'SKIP'
'be2858613d9cca85d80e7b894e9d5fa7892cbddd7a677d2d2f68f419d75fdc1f6802de8014f43ce063b116afd4ff17369873a6adea2dd58ac6f94e617de66fec'
'9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
2014-10-17 03:36:58 +00:00
2016-03-06 16:45:37 +00:00
_common_flags=(
2017-04-13 12:38:14 +00:00
--with-compat
2017-10-18 12:20:10 +00:00
--with-debug
2016-04-26 17:51:12 +00:00
--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
2016-11-19 00:38:33 +00:00
--with-http_slice_module
2016-04-26 17:51:12 +00:00
--with-http_ssl_module
--with-http_stub_status_module
--with-http_sub_module
2016-05-01 01:41:48 +00:00
--with-http_v2_module
--with-mail
--with-mail_ssl_module
2017-04-13 12:38:14 +00:00
--with-pcre-jit
2016-05-01 01:41:48 +00:00
--with-stream
2017-04-13 12:38:14 +00:00
--with-stream_geoip_module
--with-stream_realip_module
2016-05-01 01:41:48 +00:00
--with-stream_ssl_module
2017-04-13 12:38:14 +00:00
--with-stream_ssl_preread_module
2016-05-01 01:41:48 +00:00
--with-threads
2016-03-06 16:45:37 +00:00
)
_stable_flags=(
)
2020-01-06 13:33:07 +00:00
prepare() {
cp -r $pkgbase-$pkgver{,-src}
}
2014-10-17 03:36:58 +00:00
build() {
2020-01-06 13:33:07 +00:00
cd $pkgbase-$pkgver
2014-10-17 03:36:58 +00:00
2017-04-13 12:38:14 +00:00
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC"
2015-04-18 20:00:37 +00:00
2014-10-17 03:36:58 +00:00
./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 \
2017-07-12 12:31:43 +00:00
--with-cc-opt="$CFLAGS $CPPFLAGS" \
--with-ld-opt="$LDFLAGS" \
2016-03-06 16:45:37 +00:00
${_common_flags[@]} \
${_stable_flags[@]}
2014-10-17 03:36:58 +00:00
make
}
2017-10-18 12:20:10 +00:00
check() {
cd nginx-tests
2020-01-06 13:33:07 +00:00
TEST_NGINX_BINARY="$srcdir/$pkgbase-$pkgver/objs/nginx" prove .
2017-10-18 12:20:10 +00:00
}
2020-01-06 13:33:07 +00:00
package_nginx() {
cd $pkgbase-$pkgver
2014-10-17 03:36:58 +00:00
make DESTDIR="$pkgdir" install
2021-04-20 22:44:51 +00:00
sed -e 's|\<user\s\+\w\+;|user http;|g' \
2014-10-17 03:36:58 +00:00
-e '44s|html|/usr/share/nginx/html|' \
-e '54s|html|/usr/share/nginx/html|' \
-i "$pkgdir"/etc/nginx/nginx.conf
rm "$pkgdir"/etc/nginx/*.default
2017-11-30 14:05:06 +00:00
rm "$pkgdir"/etc/nginx/mime.types # in mailcap
2014-10-17 03:36:58 +00:00
install -d "$pkgdir"/var/lib/nginx
install -dm700 "$pkgdir"/var/lib/nginx/proxy
2017-02-10 13:25:30 +00:00
chmod 755 "$pkgdir"/var/log/nginx
2017-01-15 18:43:36 +00:00
chown root:root "$pkgdir"/var/log/nginx
2014-10-17 03:36:58 +00:00
install -d "$pkgdir"/usr/share/nginx
mv "$pkgdir"/etc/nginx/html/ "$pkgdir"/usr/share/nginx
install -Dm644 ../logrotate "$pkgdir"/etc/logrotate.d/nginx
install -Dm644 ../service "$pkgdir"/usr/lib/systemd/system/nginx.service
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
rmdir "$pkgdir"/run
install -d "$pkgdir"/usr/share/man/man8/
gzip -9c man/nginx.8 > "$pkgdir"/usr/share/man/man8/nginx.8.gz
2016-04-26 17:55:42 +00:00
2021-04-20 22:44:51 +00:00
for i in ftdetect ftplugin indent syntax; do
2017-04-13 12:38:14 +00:00
install -Dm644 contrib/vim/$i/nginx.vim \
"$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim"
2016-04-26 17:55:42 +00:00
done
2014-10-17 03:36:58 +00:00
}
2020-01-06 13:33:07 +00:00
package_nginx-src() {
2020-04-24 12:34:48 +00:00
pkgdesc="Source code of nginx $pkgver, useful for building modules"
2020-01-06 13:33:07 +00:00
depends=()
install -d "$pkgdir/usr/src"
cp -r $pkgbase-$pkgver-src "$pkgdir/usr/src/nginx"
}