homebrew-core/Formula/dbacl.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

14 lines
403 B
Ruby

require 'formula'
class Dbacl < Formula
homepage 'http://dbacl.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/dbacl/dbacl/1.14.1/dbacl-1.14.1.tar.gz'
sha1 '47ab878b73f7a782b34a348cfccdff6e4c9043c1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end