blob: 20c18b54492144b59ffdc1a362fd8afa0bb8e9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Thrulay < Formula
url 'http://shlang.com/thrulay/thrulay-0.8.tar.gz'
homepage 'http://shlang.com/thrulay/'
md5 '725fb13344608a652e818bcd16fe9ef6'
def install
inreplace "doc/Makefile.in", "@prefix@/man", "@prefix@/share/man"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make" # make install does not make
system "make install"
end
end
|