diff options
| author | Richard Hurt | 2010-05-17 17:19:05 -0400 |
|---|---|---|
| committer | David Höppner | 2010-05-18 19:46:58 +0200 |
| commit | ac716ed7af8d2060f0875d5357962bad14fc41ff (patch) | |
| tree | 1923ebb4a42f1f3e3ef2a3efd8f862366c2612d5 /Library | |
| parent | 8552dd8149381a58d544537aa35a95b952f8d19c (diff) | |
| download | homebrew-ac716ed7af8d2060f0875d5357962bad14fc41ff.tar.bz2 | |
Added formula for Dia the drawing program.
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>
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Formula/dia.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/dia.rb b/Library/Formula/dia.rb new file mode 100755 index 000000000..11e9cd57e --- /dev/null +++ b/Library/Formula/dia.rb @@ -0,0 +1,19 @@ +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 |
