Sha256: d4f8368470dae4323600cd499eafa1d65b006e6a04d440fc23da019f5a7e58f2
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# # Copyright:: Copyright (c) 2012-2014 Chef Software, Inc. # License:: Apache License, Version 2.0 # # 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. # name "curl" default_version "7.36.0" dependency "zlib" dependency "openssl" source :url => "http://curl.haxx.se/download/curl-#{version}.tar.gz", :md5 => "643a7030b27449e76413d501d4b8eb57" relative_path "curl-#{version}" build do command ["./configure", "--prefix=#{install_dir}/embedded", "--disable-debug", "--enable-optimize", "--disable-ldap", "--disable-ldaps", "--disable-rtsp", "--enable-proxy", "--disable-dependency-tracking", "--enable-ipv6", "--without-libidn", "--without-gnutls", "--without-librtmp", "--with-ssl=#{install_dir}/embedded", "--with-zlib=#{install_dir}/embedded"].join(" ") command "make -j #{workers}", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"} command "make install" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omnibus-3.2.2 | spec/data/complicated/config/software/curl.rb |