2010-11-30 18:31:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Owfs < Formula
|
2011-08-13 18:58:25 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/owfs/owfs/2.8p13/owfs-2.8p13.tar.gz'
|
|
|
|
version '2.8p13'
|
2010-11-30 18:31:28 +00:00
|
|
|
homepage 'http://owfs.org/'
|
2011-08-13 18:58:25 +00:00
|
|
|
md5 'cc3e2542aed41c753bffca13f2a0a84e'
|
2010-11-30 18:31:28 +00:00
|
|
|
|
|
|
|
depends_on 'libusb-compat'
|
|
|
|
|
2012-02-29 01:44:13 +00:00
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
|
|
# remove the autoreconf if possible, no comment provided about why it is there
|
|
|
|
# so we have no basis to make a decision at this point.
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
2010-11-30 18:31:28 +00:00
|
|
|
def install
|
|
|
|
system "autoreconf -ivf"
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--disable-swig",
|
|
|
|
"--disable-owtcl",
|
|
|
|
"--disable-zero",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|