thrulay 0.8

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Lars 2011-02-28 11:09:49 +02:00 committed by Adam Vandenberg
parent e0e5e974c3
commit 232fb832fd
1 changed files with 16 additions and 0 deletions

16
Formula/thrulay.rb Normal file
View File

@ -0,0 +1,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