Sha256: 2fbb2b034f9f341a38ed220c43f56ff0bb283ed2b77f4bd3bcb937b16a5cb2b5
Contents?: true
Size: 1.94 KB
Versions: 2
Compression:
Stored size: 1.94 KB
Contents
# # Copyright 2012-2016 Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ## expeditor/ignore: deprecated 2022 03 name "nginx" default_version "1.21.4" dependency "pcre" dependency "openssl" dependency "zlib" license "BSD-2-Clause" license_file "LICENSE" source url: "https://nginx.org/download/nginx-#{version}.tar.gz" # versions_list: https://nginx.org/download/ filter=*.tar.gz version("1.21.4") { source sha256: "d1f72f474e71bcaaf465dcc7e6f7b6a4705e4b1ed95c581af31df697551f3bfe" } version("1.20.1") { source sha256: "e462e11533d5c30baa05df7652160ff5979591d291736cfa5edb9fd2edb48c49" } version("1.19.9") { source sha256: "2e35dff06a9826e8aca940e9e8be46b7e4b12c19a48d55bfc2dc28fc9cc7d841" } version("1.19.8") { source sha256: "308919b1a1359315a8066578472f998f14cb32af8de605a3743acca834348b05" } relative_path "nginx-#{version}" build do env = with_standard_compiler_flags(with_embedded_path) command "./configure" \ " --prefix=#{install_dir}/embedded" \ " --with-http_ssl_module" \ " --with-http_stub_status_module" \ " --with-ipv6" \ " --with-debug" \ " --with-cc-opt=\"-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include\"" \ " --with-ld-opt=-L#{install_dir}/embedded/lib", env: env make "-j #{workers}", env: env make "install", env: env # Ensure the logs directory is available on rebuild from git cache touch "#{install_dir}/embedded/logs/.gitkeep" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
omnibus-software-23.2.281 | config/software/nginx.rb |
omnibus-software-22.11.239 | config/software/nginx.rb |