14 lines
338 B
Ruby
14 lines
338 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Vttest < Formula
|
||
|
homepage 'http://invisible-island.net/vttest/'
|
||
|
url 'ftp://invisible-island.net/vttest/vttest-20120603.tgz'
|
||
|
sha1 '7d4eae046049bdf7cb086ebba130b804a4972492'
|
||
|
|
||
|
def install
|
||
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
||
|
system "make"
|
||
|
system "make install"
|
||
|
end
|
||
|
end
|