blob: 90a9c8d34b8e1ecb80d701852f33bf737daf68f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Shmux < Formula
url 'http://web.taranis.org/shmux/dist/shmux-1.0.2.tgz'
homepage 'http://web.taranis.org/shmux/'
md5 '4ab5c46b4154cbeab54bdc0036bd9140'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|