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/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'd27f2ca8136da0702c82f0522911d06b2b8f8ea7'
|
2010-08-23 01:53:37 +00:00
|
|
|
|
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
|