blob: b28d86fe1b0ebd84cf57297700fdf9d6da55876a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Diction < Formula
homepage 'http://www.gnu.org/software/diction/'
url 'http://ftpmirror.gnu.org/diction/diction-1.11.tar.gz'
mirror 'http://ftp.gnu.org/gnu/diction/diction-1.11.tar.gz'
sha1 '30c7c778959120d30fa67be9261d41de894f498b'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|