1ac1eec53d
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
689 B
Ruby
20 lines
689 B
Ruby
require 'formula'
|
|
|
|
class Poco < Formula
|
|
homepage 'http://pocoproject.org/'
|
|
url 'http://pocoproject.org/releases/poco-1.4.6/poco-1.4.6.tar.gz'
|
|
sha1 'e96260f5a5309e129bdea4251c8e26e14bd0c9bc'
|
|
|
|
def install
|
|
arch = Hardware.is_64_bit? ? 'Darwin64': 'Darwin32'
|
|
arch << '-clang' if ENV.compiler == :clang
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--config=#{arch}",
|
|
"--omit=Data/MySQL,Data/ODBC",
|
|
"--no-samples",
|
|
"--no-tests"
|
|
system "make install CC=#{ENV.cc} CXX=#{ENV.cxx}"
|
|
end
|
|
end
|