diff options
| -rw-r--r-- | Library/Formula/uggconv.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/uggconv.rb b/Library/Formula/uggconv.rb new file mode 100644 index 000000000..43f7fbbed --- /dev/null +++ b/Library/Formula/uggconv.rb @@ -0,0 +1,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 |
