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