diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ucl.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ucl.rb b/Library/Formula/ucl.rb new file mode 100644 index 000000000..4268cc9ec --- /dev/null +++ b/Library/Formula/ucl.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Ucl <Formula + url 'http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz' + homepage 'http://www.oberhumer.com/opensource/ucl/' + md5 '852bd691d8abc75b52053465846fba34' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
