diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/xbee-comm.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Library/Formula/xbee-comm.rb b/Library/Formula/xbee-comm.rb new file mode 100644 index 000000000..da88098df --- /dev/null +++ b/Library/Formula/xbee-comm.rb @@ -0,0 +1,25 @@ +require 'formula' + +# This fork contains OS X patches. +# Original project: https://github.com/roysjosh/xbee-comm + +class XbeeComm < Formula + homepage 'https://github.com/guyzmo/xbee-comm.git' + url 'https://github.com/guyzmo/xbee-comm/tarball/v1.5' + sha1 '260e4ca71dabde120fd90089f0dada68d3123dcf' + + head 'https://github.com/guyzmo/xbee-comm.git' + + depends_on :automake + + def install + system "aclocal" + system "autoconf" + system "autoheader" + system "automake", "-a", "-c" + + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
