New formula: telepathy-glib

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Steve Erhart 2014-06-19 15:47:17 -04:00 committed by Jack Nagel
parent d82e93f7b4
commit 5b51573b41
1 changed files with 26 additions and 0 deletions

26
Formula/telepathy-glib.rb Normal file
View File

@ -0,0 +1,26 @@
require "formula"
class TelepathyGlib < Formula
homepage "http://telepathy.freedesktop.org/wiki/"
url "http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.0.tar.gz"
sha1 "43a3e9f3e08725b689aba3baa487c9711d436888"
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gobject-introspection"
depends_on "dbus-glib"
def install
args = %W[
--disable-debug
--prefix=#{prefix}
--enable-introspection=yes
--disable-installed-tests
--disable-installed-examples
--disable-gtk-doc-html
]
system "./configure", *args
system "make install"
end
end