blob: c2f96f6bfdebf6018a304fd91c98bfb2fe1121a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Manto <Formula
url 'http://manto.googlecode.com/files/manto-1.0.0.tar.gz'
homepage 'http://code.google.com/p/manto/'
md5 '59be0b24d13b9ac68ed15958ac7d169a'
def install
system "make"
bin.install "manto"
man1.install gzip("manto.1")
end
end
|