diff options
| author | Richard Hurt | 2010-07-18 09:01:49 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-18 09:14:02 -0700 |
| commit | 25be8316b6c866dac2fa9dec297ed4ca9f6485e5 (patch) | |
| tree | 736dafbcb7c62b97953696b97324c4cd317e72e1 /Library/Formula | |
| parent | a4f408180a2f4cbc9499ad78c04e17db6ad4d47e (diff) | |
| download | homebrew-25be8316b6c866dac2fa9dec297ed4ca9f6485e5.tar.bz2 | |
Added Geany text editor
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/geany.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/geany.rb b/Library/Formula/geany.rb new file mode 100644 index 000000000..183a92f09 --- /dev/null +++ b/Library/Formula/geany.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Geany <Formula + url 'http://download.geany.org/geany-0.19.tar.gz' + homepage 'http://www.geany.org/Main/HomePage' + md5 '727cec2936846850bb088b476faad5f2' + + depends_on 'pkg-config' + depends_on 'gettext' + depends_on 'intltool' + depends_on 'gtk+' + + def install + intltool = Formula.factory('intltool') + ENV.append "PATH", intltool.bin, ":" + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
