homebrew-core/Formula/libbinio.rb

13 lines
363 B
Ruby
Raw Normal View History

2010-07-02 02:12:05 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Libbinio < Formula
2010-07-02 02:12:05 +00:00
url 'http://downloads.sourceforge.net/project/libbinio/libbinio/1.4/libbinio-1.4.tar.bz2'
homepage 'http://libbinio.sf.net'
md5 '517ded8c7ce9b3de0f84b1db74a2ebda'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end