diff options
| author | Guyzmo | 2012-05-11 19:08:49 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-04 10:40:06 -0700 |
| commit | d0dc632ec58e8c4ed0c8b39e6c03d01b0edd65ff (patch) | |
| tree | b615b155a1c17e6e35fd3f6dd6137ea5a57d2754 /Library | |
| parent | 946b165888130a10d2fb51e466b82bc1990b56e6 (diff) | |
| download | homebrew-d0dc632ec58e8c4ed0c8b39e6c03d01b0edd65ff.tar.bz2 | |
xbee-comm 1.5
Closes #12203.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -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 |
