xbee-comm 1.5

Closes Homebrew/homebrew#12203.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Guyzmo 2012-05-11 19:08:49 +02:00 committed by Adam Vandenberg
parent dfaa9d55ff
commit ea72631f51

25
Formula/xbee-comm.rb Normal file
View file

@ -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