blob: f8862c11f632f436028fc31d0bf1f3510a3534f3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'formula'
class Thrulay < Formula
  homepage 'http://sourceforge.net/projects/thrulay/'
  url 'https://downloads.sourceforge.net/project/thrulay/thrulay/0.9/thrulay-0.9.tar.gz'
  sha1 '9128ebdd6b2213f5e166f9e1d95322161a3290f2'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    ENV.j1
    system "make install"
  end
end
 |