pantry/projects/nginx.org/package.yml
Marc Seitz c750f56954
+nginx.org (#417)
* +nginx.org

* add comment re: pcre2

* fix test case

* fix test case

* nginx test relocatable

* nginx test relocatable

* change nginx port to 8080 for test

* fix darwin test
2023-02-23 09:38:24 -05:00

35 lines
732 B
YAML

distributable:
url: https://nginx.org/download/nginx-{{version}}.tar.gz
strip-components: 1
versions:
github: nginx/nginx/tags # reads github tags from github
strip: /^release-/
dependencies:
pcre.org: 8.45 # switch to pcre.org/pcre2 once it's available
zlib.net: ^1.2.13
openssl.org: ^1.1.1k
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }}
make install
env:
ARGS:
- --prefix={{prefix}}
- --with-http_ssl_module
- --with-stream
provides:
- sbin/nginx
test:
script: |
sed -i.bak -e 's/80/8080/g' {{prefix}}/conf/nginx.conf
nginx -p {{prefix}} -c {{prefix}}/conf/nginx.conf -t