2585885522
Upgrade to 1.11.2. Tested on ML with XCode-4.4.1. Closes Homebrew/homebrew#14055. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
347 B
Ruby
12 lines
347 B
Ruby
require 'formula'
|
|
|
|
class Libgadu < Formula
|
|
homepage 'http://toxygen.net/libgadu/'
|
|
url 'http://toxygen.net/libgadu/files/libgadu-1.11.2.tar.gz'
|
|
sha1 '0e13836416b49212d5f17a74d8c2e72c5f915238'
|
|
|
|
def install
|
|
system './configure', "--prefix=#{prefix}", '--disable-debug', '--disable-dependency-tracking'
|
|
system 'make install'
|
|
end
|
|
end
|