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

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

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