2010-08-23 01:53:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Uim < Formula
|
2010-08-23 01:53:37 +00:00
|
|
|
url 'http://uim.googlecode.com/files/uim-1.6.0.tar.bz2'
|
|
|
|
homepage 'http://code.google.com/p/uim/'
|
|
|
|
md5 'cb3b9b2adaff3db9dec43658f30e9f89'
|
|
|
|
|
2011-11-30 02:54:32 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-08-23 01:53:37 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|