diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/thrulay.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/thrulay.rb b/Library/Formula/thrulay.rb new file mode 100644 index 000000000..3fa43164a --- /dev/null +++ b/Library/Formula/thrulay.rb @@ -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 |
