blob: ba104560814728acb78633bf17d6af7835ef63c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Dia <Formula
url 'http://ftp.gnome.org/pub/gnome/sources/dia/0.97/dia-0.97.tar.bz2'
homepage 'http://live.gnome.org/Dia'
md5 '3d11f9aaa5a4923f0a5533962c87bdfb'
depends_on 'pkg-config' => :build
depends_on 'intltool'
depends_on 'gettext'
depends_on 'pango'
depends_on 'libtiff'
depends_on 'gtk+'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
rm_rf share+"applications"
end
end
|