2012-03-19 09:36:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libzdb < Formula
|
|
|
|
homepage 'http://tildeslash.com/libzdb/'
|
2012-11-13 05:41:38 +00:00
|
|
|
url 'http://tildeslash.com/libzdb/dist/libzdb-2.10.6.tar.gz'
|
|
|
|
sha1 'ae649655788a8db50f2bb0c36f90afe8a7fcc40b'
|
2012-03-19 09:36:56 +00:00
|
|
|
|
2012-10-21 19:54:36 +00:00
|
|
|
option 'without-sqlite', "Compile without SQLite support"
|
|
|
|
option 'without-postgresql', "Compile without PostgreSQL support"
|
|
|
|
option 'without-mysql', "Compile without MySQL support"
|
2012-03-19 09:36:56 +00:00
|
|
|
|
2012-11-06 02:03:26 +00:00
|
|
|
depends_on :postgresql unless build.include? 'without-postgresql'
|
|
|
|
depends_on :mysql unless build.include? 'without-mysql'
|
|
|
|
depends_on 'sqlite' unless build.include? 'without-sqlite'
|
2012-03-19 09:36:56 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
args = ["--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"]
|
|
|
|
|
2012-10-21 19:54:36 +00:00
|
|
|
args << "--without-sqlite" if build.include? 'without-sqlite'
|
|
|
|
args << "--without-mysql" if build.include? 'without-mysql'
|
|
|
|
args << "--without-postgresql" if build.include? 'without-postgresql'
|
2012-03-19 09:36:56 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|