aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/uim.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/uim.rb b/Library/Formula/uim.rb
new file mode 100644
index 000000000..897e7b51c
--- /dev/null
+++ b/Library/Formula/uim.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Uim <Formula
+ url 'http://uim.googlecode.com/files/uim-1.6.0.tar.bz2'
+ homepage 'http://code.google.com/p/uim/'
+ md5 'cb3b9b2adaff3db9dec43658f30e9f89'
+
+ depends_on 'pkg-config'
+ depends_on 'gettext'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end