Sha256: c1cc0e7512e8dec6eae58994659251f34db61769dfcf62346f253aa64e3a2252
Contents?: true
Size: 1.34 KB
Versions: 7
Compression:
Stored size: 1.34 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 "fcgiwrap" default_version "1.0.3" dependency "autoconf" dependency "fcgi" # TODO: deploy from the 1.0.3 tag / SHA source :git => "git://github.com/gnosek/fcgiwrap" relative_path "fcgiwrap" env = { "LDFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include", "CFLAGS" => "-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include", "LD_RUN_PATH" => "#{install_dir}/embedded/lib", "PATH" => "#{install_dir}/embedded/bin:#{ENV["PATH"]}" } build do command "autoreconf -i", :env => env command "./configure --prefix=#{install_dir}/embedded", :env => env command "make -j #{max_build_jobs}", :env => {"LD_RUN_PATH" => "#{install_dir}/embedded/lib"} command "make install" end
Version data entries
7 entries across 7 versions & 1 rubygems