2012-03-19 09:36:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libzdb < Formula
|
|
|
|
homepage 'http://tildeslash.com/libzdb/'
|
2013-10-19 23:31:37 +00:00
|
|
|
url 'http://tildeslash.com/libzdb/dist/libzdb-2.12.tar.gz'
|
|
|
|
sha1 '4d34be255afddbd025b2f60c5cd11b4389b5c88c'
|
2012-03-19 09:36:56 +00:00
|
|
|
|
2013-06-02 22:13:06 +00:00
|
|
|
depends_on :postgresql => :recommended
|
|
|
|
depends_on :mysql => :recommended
|
|
|
|
depends_on 'sqlite' => :recommended
|
2012-03-19 09:36:56 +00:00
|
|
|
|
|
|
|
def install
|
2013-06-04 01:43:15 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
2012-03-19 09:36:56 +00:00
|
|
|
|
2013-06-02 22:13:06 +00:00
|
|
|
args << "--without-postgresql" if build.without? 'postgresql'
|
|
|
|
args << "--without-mysql" if build.without? 'mysql'
|
|
|
|
args << "--without-sqlite" if build.without? 'sqlite'
|
2012-03-19 09:36:56 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|