blob: 1b6810e909a4a1a3ced3a4e94536701908facd23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Glibmm < Formula
homepage 'http://www.gtkmm.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.28/glibmm-2.28.2.tar.bz2'
sha256 '7b67178363f8494c94f8b3dd704a4c8db7ad75a253fc84a4ad229e5e179ec192'
depends_on 'pkg-config' => :build
depends_on 'libsigc++'
depends_on 'glib'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|