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

class Diction <Formula
  url 'http://ftp.gnu.org/gnu/diction/diction-1.11.tar.gz'
  homepage 'http://www.gnu.org/software/diction/'
  md5 '4cbdb115c976d7141f54b223df28012e'

  aka 'style'

  def install
      configure_args = [
          "--prefix=#{prefix}",
          "--disable-debug",
          "--disable-dependency-tracking",
      ]
    system "./configure", *configure_args
    system "make install"
  end
end