diff options
| author | Thomas Gustafsson | 2010-11-30 19:31:28 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-02 12:42:19 +0000 |
| commit | 10536c8178caee97b31f2eee68e12a33a280ea96 (patch) | |
| tree | 57136e0bfb54281f3a732bf750be8964c106f7ee /Library/Formula/owfs.rb | |
| parent | 9f7c7c05589d303bb720a04a89a1c76a7ed45c44 (diff) | |
| download | homebrew-10536c8178caee97b31f2eee68e12a33a280ea96.tar.bz2 | |
New formula : owfs
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/owfs.rb')
| -rw-r--r-- | Library/Formula/owfs.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/owfs.rb b/Library/Formula/owfs.rb new file mode 100644 index 000000000..d944d22e3 --- /dev/null +++ b/Library/Formula/owfs.rb @@ -0,0 +1,20 @@ +require 'formula' + +class Owfs <Formula + url 'http://downloads.sourceforge.net/project/owfs/owfs/2.8p4/owfs-2.8p4.tar.gz' + version '2.8p4' + homepage 'http://owfs.org/' + md5 'beccd8765184b2abea0a3f28dc466ea3' + + depends_on 'libusb-compat' + + 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 |
