blob: b6589d007429fb57d56b3ecd4261ef2c4624caaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Garmintools < Formula
homepage 'http://code.google.com/p/garmintools/'
url 'http://garmintools.googlecode.com/files/garmintools-0.10.tar.gz'
sha1 'f59a761b09575d27abbf5d76811f7ec25a1cbd26'
depends_on 'libusb-compat'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|