2010-11-30 18:31:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Owfs < Formula
|
2012-07-07 18:08:22 +00:00
|
|
|
homepage 'http://owfs.org/'
|
2012-11-07 06:54:39 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/owfs/owfs/2.8p20/owfs-2.8p20.tar.gz'
|
|
|
|
version '2.8p20'
|
|
|
|
sha1 'ccfe8b794fd224221538d2f85c6d9774254c58f5'
|
2010-11-30 18:31:28 +00:00
|
|
|
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on 'libusb-compat'
|
2012-02-29 01:44:13 +00:00
|
|
|
|
2010-11-30 18:31:28 +00:00
|
|
|
def install
|
2012-11-07 06:54:39 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2010-11-30 18:31:28 +00:00
|
|
|
"--disable-swig",
|
|
|
|
"--disable-owtcl",
|
|
|
|
"--disable-zero",
|
2012-11-07 06:54:39 +00:00
|
|
|
"--disable-owpython",
|
|
|
|
"--disable-owperl",
|
2010-11-30 18:31:28 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|