aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libsigc++.rb
blob: bcd1c96b72464fa82f3f5313058350aec1c855cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Libsigcxx <Formula
  url 'http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/libsigc++-2.2.4.2.tar.bz2'
  homepage 'http://libsigc.sourceforge.net'
  md5 '545edbb7b54eec4f723323d3158c0e0c'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make"
    system "make install"
  end
end