blob: cfe807768d2d2e1b877d099f707ba3446f601d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Loudmouth < Formula
url 'http://mcabber.com/files/loudmouth-1.4.3+gitb5a9de5b.20100413.tar.bz2'
version '1.5.0-pre'
homepage 'http://www.loudmouth-project.org/'
md5 'd9693855e1d8226144937decd25633d2'
head 'https://github.com/engineyard/loudmouth.git'
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'gnutls' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|