95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
481 B
Ruby
15 lines
481 B
Ruby
class Uim < Formula
|
|
desc "Multilingual input method library"
|
|
homepage "https://code.google.com/p/uim/"
|
|
url "https://uim.googlecode.com/files/uim-1.6.0.tar.bz2"
|
|
sha256 "2a34dca2091eb6d61f05dabd8512c6658d8cefa8db14b7a684fbb10caea4a3aa"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gettext"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|