Sha256: d6650def74794d3e1da36e6debec541564aecedeee10fccbc78a901c858038cd
Contents?: true
Size: 1.15 KB
Versions: 7
Compression:
Stored size: 1.15 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 "redis" default_version "2.8.2" source :url => "http://download.redis.io/releases/redis-#{version}.tar.gz", :md5 => "ee527b0c37e1e2cbceb497f5f6b8112b" relative_path "redis-#{version}" make_args = ["PREFIX=#{install_dir}/embedded", "CFLAGS='-L#{install_dir}/embedded/lib -I#{install_dir}/embedded/include'", "LD_RUN_PATH=#{install_dir}/embedded/lib"].join(" ") build do command ["make -j #{max_build_jobs}", make_args].join(" ") command ["make install", make_args].join(" ") end
Version data entries
7 entries across 7 versions & 1 rubygems