20 lines
810 B
Ruby
20 lines
810 B
Ruby
class Libgadu < Formula
|
|
desc "Library for ICQ instant messenger protocol"
|
|
homepage "http://libgadu.net/"
|
|
url "https://github.com/wojtekka/libgadu/releases/download/1.12.2/libgadu-1.12.2.tar.gz"
|
|
sha256 "28e70fb3d56ed01c01eb3a4c099cc84315d2255869ecf08e9af32c41d4cbbf5d"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "4cf4bb4fa157bff6ce4e1fa58a79c372df6b0a00c5e5fd621f6396b3d55451e6" => :sierra
|
|
sha256 "1feb9c3c574632f9324fdfc8bc5ed49f2817e7a58ae280e44b0ae8735e89caca" => :el_capitan
|
|
sha256 "845c258af465001dcdfad1f09e7659e86d6d006b9381c6e3cfaf0461e432ab46" => :yosemite
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--without-pthread"
|
|
system "make", "install"
|
|
end
|
|
end
|