homebrew-core/Formula/libinfinity.rb

35 lines
964 B
Ruby
Raw Normal View History

2012-04-24 13:54:42 +00:00
require 'formula'
class Libinfinity < Formula
homepage 'http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity'
url 'http://releases.0x539.de/libinfinity/libinfinity-0.5.2.tar.gz'
2012-07-19 03:57:45 +00:00
sha1 '0864b7f00c44b7bed9f6b69e0e322e0359883358'
2012-04-24 13:54:42 +00:00
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'gtk+'
depends_on 'gnutls'
depends_on 'libgsasl'
depends_on :x11
2012-04-24 13:54:42 +00:00
# Reported upstream here: http://gobby.0x539.de/trac/ticket/595
# Supposedly fixed in HEAD. Test and remove at libinfinity-0.5.3.
fails_with :clang do
build 318
cause 'Non-void function should return a value'
end
2012-04-24 13:54:42 +00:00
# MacPorts patch to fix pam include
def patches
{ :p0 => [
"https://trac.macports.org/export/92297/trunk/dports/comms/libinfinity/files/patch-infinoted-infinoted-pam.c.diff"
]}
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end