homebrew-core/Formula/gpsbabel.rb
patricks 39a293ad9d updated source url
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-18 07:13:10 -07:00

15 lines
395 B
Ruby

require 'formula'
class Gpsbabel <Formula
url 'http://ee.archive.ubuntu.com/pub/pkgsrc/distfiles/gpsbabel-1.4.1.tar.gz'
homepage 'http://www.gpsbabel.org'
md5 '512c4acfb12e20102fa5ceacef45a356'
depends_on 'libusb'
depends_on 'expat'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end