f7b595f7c6
Libgadu is a library supporting the Gadu-Gadu instant messaging protocol.
13 lines
362 B
Ruby
13 lines
362 B
Ruby
require 'formula'
|
|
|
|
class Libgadu <Formula
|
|
homepage 'http://toxygen.net/libgadu/'
|
|
url 'http://toxygen.net/libgadu/files/libgadu-1.9.0-rc2.tar.gz'
|
|
md5 '2d2a96a98e33d3a0055bc76f67a19f04'
|
|
version '1.9.0-rc2'
|
|
|
|
def install
|
|
system './configure', "--prefix=#{prefix}", '--disable-debug', '--disable-dependency-tracking'
|
|
system 'make install'
|
|
end
|
|
end
|