aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Huslage2013-03-05 13:25:18 -0500
committerAdam Vandenberg2013-03-08 15:02:02 -0800
commit672af665e8e1b0eee627da47eb92b85b95ceba57 (patch)
tree75603dd8e99060df2d653ea74f251ca7076c86fd
parentb0b6913046e0ff583a1152ad574b62af0e42c93a (diff)
downloadhomebrew-672af665e8e1b0eee627da47eb92b85b95ceba57.tar.bz2
libmodbus 3.0.3
Closes #18263. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/libmodbus.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/Library/Formula/libmodbus.rb b/Library/Formula/libmodbus.rb
index b5effc145..7cfa625d0 100644
--- a/Library/Formula/libmodbus.rb
+++ b/Library/Formula/libmodbus.rb
@@ -1,25 +1,12 @@
require 'formula'
-# Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook
-# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
-
class Libmodbus < Formula
homepage 'http://libmodbus.org'
url 'https://github.com/downloads/stephane/libmodbus/libmodbus-3.0.3.tar.gz'
sha1 '28f7dcd418181306dd9e3fc1d409b8e0e963c233'
def install
-
system "./configure", "--prefix=#{prefix}"
system "make install"
end
-
- test do
- # `test do` will create, run in and delete a temporary directory.
- #
- # This test will fail and we won't accept that! It's enough to just replace
- # "false" with the main program this formula installs, but it'd be nice if you
- # were more thorough. Run the test with `brew test libmodbus`.
- system "false"
- end
end