homebrew-core/Formula/telepathy-mission-control.rb
Guillaume Hain 62a56a452b TelepathyMissionControl: update homepage
The previous homepage was a link to the entire Telepathy project
components. This new homepage URL is pointing to the documentation of
the Telepathy MissionControl component.

Closes Homebrew/homebrew#31462.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-09 10:59:23 -05:00

31 lines
868 B
Ruby

require "formula"
class TelepathyMissionControl < Formula
homepage "http://telepathy.freedesktop.org/wiki/Mission_Control/"
url "http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.2.tar.gz"
sha1 "4c15d20b5f06f083a60bcd9b08141e99092863a3"
bottle do
sha1 "8235075abe8ce8cb5e9dd93d4d5744c1e6ea631a" => :mavericks
sha1 "f581cf6c84813819d00976a6bcedb09b001741f2" => :mountain_lion
sha1 "4411c5f1d032a92620658f1bb976c8d59f83edb2" => :lion
end
depends_on "pkg-config" => :build
depends_on "telepathy-glib"
def install
args = %W[
--prefix=#{prefix}
--with-connectivity=no
--disable-debug
--disable-upower
--disable-gtk-doc-html
--disable-static
--disable-dependency-tracking
]
system "./configure", *args
system "make install"
end
end