2010-03-21 07:56:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Qdbm < Formula
|
2012-06-18 16:09:16 +00:00
|
|
|
homepage 'http://fallabs.com/qdbm'
|
|
|
|
url 'http://fallabs.com/qdbm/qdbm-1.8.78.tar.gz'
|
|
|
|
sha1 '8c2ab938c2dad8067c29b0aa93efc6389f0e7076'
|
2010-03-21 07:56:37 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-18 16:09:16 +00:00
|
|
|
system "./configure", "--disable-debug",
|
2010-10-21 14:54:17 +00:00
|
|
|
"--prefix=#{prefix}",
|
2012-06-18 16:09:16 +00:00
|
|
|
"--enable-bzip",
|
|
|
|
"--enable-zlib",
|
|
|
|
"--enable-iconv"
|
2010-03-21 07:56:37 +00:00
|
|
|
system "make mac"
|
|
|
|
system "make install-mac"
|
|
|
|
end
|
|
|
|
end
|