blob: 5c458135b19d48d521b763fd612d307d714e1a74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class GnuTypist <Formula
url 'http://ftp.gnu.org/gnu/gtypist/gtypist-2.8.3.tar.bz2'
homepage 'http://www.gnu.org/software/gtypist/'
md5 '43be4b69315a202cccfed0efd011d66c'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|