aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gabedit.rb
blob: 2d3c8a514453e11aab4f5b35bd02fc9c7a5ceb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Gabedit < Formula
  homepage 'http://gabedit.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/gabedit/gabedit/Gabedit240/GabeditSrc240.tar.gz'
  version '2.4.0'
  md5 '2b012ceaacafffc92c5d677822df8002'

  depends_on 'pkg-config' => :build
  depends_on 'gtk+'
  depends_on 'gtkglext'

  def install
    system 'make'
    bin.install 'gabedit' # There is no 'make install'
  end
end