mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
78 lines
1.9 KiB
YAML
78 lines
1.9 KiB
YAML
|
distributable:
|
||
|
url: https://dlcdn.apache.org/httpd/httpd-2.4.57.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
url: https://dlcdn.apache.org/httpd/
|
||
|
match: /httpd-\d+\.\d+\.\d+.tar.gz/
|
||
|
strip:
|
||
|
- /^httpd-/
|
||
|
- /\.tar\.gz$/
|
||
|
|
||
|
dependencies:
|
||
|
apache.org/apr: '>=1.3.0'
|
||
|
apache.org/apr-util: '>=1.3.0'
|
||
|
github.com/google/brotli: '*'
|
||
|
nghttp2.org: '*'
|
||
|
openssl.org: '*'
|
||
|
pcre.org/v2: '*'
|
||
|
gnome.org/libxml2: '*'
|
||
|
zlib.net: '*'
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
gnu.org/libtool: '*'
|
||
|
gnu.org/autoconf: '*'
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make
|
||
|
make install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix="{{prefix}}"
|
||
|
- --enable-layout=Slackware-FHS
|
||
|
- --sbindir={{prefix}}/bin
|
||
|
- --mandir={{prefix}}/man
|
||
|
- --sysconfdir={{prefix}}/etc/httpd
|
||
|
- --datadir={{prefix}}/var/www
|
||
|
- --localstatedir={{prefix}}/var
|
||
|
- --enable-mpms-shared=all
|
||
|
- --enable-mods-shared=all
|
||
|
- --enable-authnz-fcgi
|
||
|
- --enable-cgi
|
||
|
- --enable-pie
|
||
|
- --enable-suexec
|
||
|
- --with-suexec-bin={{prefix}}/suexec
|
||
|
- --with-suexec-caller=_www
|
||
|
- --with-port=8080
|
||
|
- --with-sslport=8443
|
||
|
- --with-apr={{deps.apache.org/apr.prefix}}
|
||
|
- --with-apr-util={{deps.apache.org/apr-util.prefix}}
|
||
|
- --with-brotli={{deps.github.com/google/brotli.prefix}}
|
||
|
- --with-libxml2={{deps.gnome.org/libxml2.prefix}}
|
||
|
- --with-mpm=prefork
|
||
|
- --with-nghttp2={{deps.nghttp2.org.prefix}}
|
||
|
- --with-ssl={{deps.openssl.org.prefix}}
|
||
|
- --with-pcre={{deps.pcre.org/v2.prefix}}
|
||
|
- --with-z={{deps.zlib.net.prefix}}
|
||
|
- --disable-lua
|
||
|
- --disable-luajit
|
||
|
|
||
|
provides:
|
||
|
- bin/ab
|
||
|
- bin/checkgid
|
||
|
- bin/fcgistarter
|
||
|
- bin/htcacheclean
|
||
|
- bin/htdbm
|
||
|
- bin/htdigest
|
||
|
- bin/htpasswd
|
||
|
- bin/httpd
|
||
|
- bin/httxt2dbm
|
||
|
- bin/logresolve
|
||
|
- bin/rotatelogs
|
||
|
- bin/suexec
|
||
|
|
||
|
test:
|
||
|
httpd -v | grep {{version}}
|