blob: 10a423e414707dd7fe754c163edcb38934c2fd77 (
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
26
|
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 "autoconf" => :build
depends_on "automake" => :build
def install
system "aclocal"
system "autoconf"
system "autoheader"
system "automake", "-a", "-c"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|