xbee-comm 1.5
Closes Homebrew/homebrew#12203. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
dfaa9d55ff
commit
ea72631f51
1 changed files with 25 additions and 0 deletions
25
Formula/xbee-comm.rb
Normal file
25
Formula/xbee-comm.rb
Normal 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
|
Loading…
Reference in a new issue