homebrew-core/Formula/poco.rb
2013-10-23 11:58:32 +01:00

25 lines
788 B
Ruby

require 'formula'
class Poco < Formula
homepage 'http://pocoproject.org/'
url 'http://pocoproject.org/releases/poco-1.4.6/poco-1.4.6p2-all.tar.bz2'
sha1 'd0d5459039f26a8d4402c8e85484b1b29c75b2b4'
version '1.4.6p2-all'
devel do
url 'http://pocoproject.org/releases/poco-1.5.1/poco-1.5.1-all.tar.bz2'
sha1 '2eaa44deb853a6f7ba7d9e4726a365ae45006ef1'
end
def install
arch = Hardware.is_64_bit? ? 'Darwin64': 'Darwin32'
arch << '-clang' if ENV.compiler == :clang
system "./configure", "--prefix=#{prefix}",
"--config=#{arch}",
"--omit=Data/MySQL,Data/ODBC",
"--no-samples",
"--no-tests"
system "make install CC=#{ENV.cc} CXX=#{ENV.cxx}"
end
end