blob: de20e2c16325ae465a4b920c786a69421e9269bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Srmio < Formula
homepage 'http://www.zuto.de/project/srmio/'
url 'http://www.zuto.de/project/files/srmio/srmio-0.1.0.tar.gz'
sha1 '681fdf78ea0eae889fa93c929c5806da78fcca15'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/srmcmd", "--help"
end
end
|