66723a228d
This commit adds the Dia drawing program. I think I captured all of the requirements but I can't be certain. It seems to build pretty cleanly and in my limited testing it runs fine. Signed-off-by: David Höppner <0xffea@gmail.com>
19 lines
402 B
Ruby
Executable file
19 lines
402 B
Ruby
Executable file
require 'formula'
|
|
|
|
class Dia <Formula
|
|
depends_on 'intltool'
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'pango'
|
|
depends_on 'libtiff'
|
|
depends_on 'gtk+'
|
|
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/dia/0.97/dia-0.97.tar.bz2'
|
|
homepage 'http://live.gnome.org/Dia'
|
|
md5 '3d11f9aaa5a4923f0a5533962c87bdfb'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|