blob: 43f7fbbede84626932da8dccd3b9eb81ee492b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Uggconv < Formula
  url 'http://wyrmcorp.com/software/uggconv/uggconv-1.0.tar.gz'
  homepage 'http://wyrmcorp.com/software/uggconv/index.shtml'
  md5 '97b479b2fb761c9dbd7718b0ec71d068'
  def install
    system "make"
    bin.install 'uggconv'
    man1.install 'uggconv.1'
  end
end
  |