aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ucl.rb12
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