2009-12-27 11:28:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Diction < Formula
|
2013-01-27 22:09:54 +00:00
|
|
|
homepage 'http://www.gnu.org/software/diction/'
|
2011-09-12 16:31:30 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/diction/diction-1.11.tar.gz'
|
2011-11-30 18:56:07 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/diction/diction-1.11.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '30c7c778959120d30fa67be9261d41de894f498b'
|
2009-12-27 11:28:17 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-12-27 11:28:17 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|