blob: fd92d38b8346b88fdc32858809c25795b17c602b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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/archive/v1.5.tar.gz'
sha1 '1eefd2818fcffb2da9e217c7df48b1ff4f72ef3a'
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
|