homebrew-core/Formula/gpredict.rb
Anthony DeStefano 9cdcb966e4 gpredict 1.3
Gpredict is a real-time satellite tracking and orbit prediction application. It
can track an unlimited number of satellites and display their position and
other data in lists, tables, maps, and polar plots (radar view). Gpredict can
also predict the time of future passes for a satellite, and provide you with
detailed information about each pass.

Closes Homebrew/homebrew#19272.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-05 21:50:31 -07:00

27 lines
740 B
Ruby

require 'formula'
class Gpredict < Formula
homepage 'http://gpredict.oz9aec.net/'
url 'http://downloads.sourceforge.net/project/gpredict/Gpredict/1.3/gpredict-1.3.tar.gz'
sha1 'a02a979fb68f9be8b9294a7c4ca248aaecd73b34'
depends_on :x11
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'curl'
depends_on 'gettext'
depends_on 'glib'
depends_on 'goocanvas'
depends_on 'gtk+'
depends_on 'hamlib'
def install
gettext = Formula.factory('gettext')
ENV.append "CFLAGS", "-I#{gettext.include}"
ENV.append "LDFLAGS", "-L#{gettext.lib}"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end