2013-07-29 07:40:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dbacl < Formula
|
|
|
|
homepage 'http://dbacl.sourceforge.net/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/dbacl/dbacl/1.14.1/dbacl-1.14.1.tar.gz'
|
2013-07-29 07:40:53 +00:00
|
|
|
sha1 '47ab878b73f7a782b34a348cfccdff6e4c9043c1'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|