Skip to content
This repository has been archived by the owner on Jan 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #6 from portertech/fixes
Browse files Browse the repository at this point in the history
[fixes] use zlib 1.2.7
  • Loading branch information
portertech committed May 27, 2012
2 parents 4836dce + cb2bca1 commit 172f2d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/zlib.rake
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Bunchr::Software.new do |t|
t.name = 'zlib'
t.version = '1.2.6'
t.version = '1.2.7'

install_prefix = "#{Bunchr.install_dir}/embedded"

t.download_commands << "curl -O http://zlib.net/zlib-1.2.6.tar.gz"
t.download_commands << "tar xfvz zlib-1.2.6.tar.gz"
t.download_commands << "curl -O http://zlib.net/zlib-1.2.7.tar.gz"
t.download_commands << "tar xfvz zlib-1.2.7.tar.gz"

os = t.ohai['os']
arch = t.ohai['kernel']['machine']
Expand All @@ -22,7 +22,7 @@ Bunchr::Software.new do |t|
unless File.directory?("#{install_prefix}/lib")
t.build_commands << "mkdir #{install_prefix}/lib"
end

t.build_commands << "./configure --prefix=#{install_prefix}"
t.build_commands << "make"

Expand Down

0 comments on commit 172f2d3

Please sign in to comment.