diff options
| author | Tokuhiro Matsuno | 2010-08-23 10:53:37 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 21:24:52 -0700 |
| commit | 392aef78cd1cf2ca2fefd8f5adf564ac51f2c924 (patch) | |
| tree | af11624adfe14aec5bfd569f3183ca7cd5cd4273 /Library | |
| parent | 1bf35529f228c19b98fb494953c6002a800e4ed6 (diff) | |
| download | homebrew-392aef78cd1cf2ca2fefd8f5adf564ac51f2c924.tar.bz2 | |
new formula: uim
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/uim.rb | 16 |
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 |
