66 lines
1.8 KiB
Bash
66 lines
1.8 KiB
Bash
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=nginx
|
|
version=1.26.2
|
|
build=1sml
|
|
homepage="http://nginx.org"
|
|
download="http://nginx.org/download/nginx-$version.tar.gz"
|
|
desc="High-performance HTTP server with support for IMAP3 and POP3 proxies"
|
|
requires="zlib pcre openssl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/var/lib \
|
|
--with-http_ssl_module \
|
|
--with-http_v2_module \
|
|
--with-http_stub_status_module \
|
|
--with-http_auth_request_module \
|
|
--with-http_gunzip_module \
|
|
--with-http_realip_module \
|
|
--with-http_secure_link_module \
|
|
--with-http_slice_module \
|
|
--with-threads \
|
|
--with-ipv6 \
|
|
--sbin-path=/usr/bin/nginx \
|
|
--conf-path=/etc/nginx/nginx.conf \
|
|
--error-log-path=/var/log/nginx/error.log \
|
|
--lock-path=/var/lock/nginx.lock \
|
|
--http-log-path=/var/log/nginx/access.log \
|
|
--http-client-body-temp-path=/var/spool/nginx\body \
|
|
--http-fastcgi-temp-path=/var/spool/nginx/fastcgi \
|
|
--http-proxy-temp-path=/var/spool/nginx/proxy \
|
|
--http-scgi-temp-path=/var/spool/nginx/scgi \
|
|
--http-uwsgi-temp-path=/var/spool/nginx/uwsgi
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
mkdir -p $pkg/var/spool/nginx
|
|
install -Dm 644 $srcdir/nginx.conf.sample $pkg/etc/nginx/nginx.conf.sample
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
preprunitservice -s nginx -d
|
|
|
|
(
|
|
cd $pkg/etc/nginx
|
|
for conffile in fastcgi_params fastcgi.conf mime.types nginx.conf koi-utf \
|
|
koi-win scgi_params uwsgi_params win-utf ; do
|
|
mv $conffile $conffile.new
|
|
done
|
|
)
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
57f2f51308689f5cbd21cc983257f35a9f8786833c6dca21f61876dc8b7068cae3a56fdc9d3004b1eb374ad12a0cf2cd35bd6a883b3c48e50faead4287ed0a80 nginx-1.26.2.tar.lz
|
|
"
|