c8d2d41c1d
This takes care of a `brew audit` complaint. Closes Homebrew/homebrew#18828. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
25 lines
638 B
Ruby
25 lines
638 B
Ruby
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
|