homebrew-core/Formula/libbinio.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

13 lines
399 B
Ruby

require 'formula'
class Libbinio < Formula
homepage 'http://libbinio.sf.net'
url 'https://downloads.sourceforge.net/project/libbinio/libbinio/1.4/libbinio-1.4.tar.bz2'
sha1 '47db5f7448245f38b9d26c8b11f53a07b6f6da73'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end