homebrew-core/Formula/opencc.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

23 lines
695 B
Ruby

class Opencc < Formula
desc "Simplified-traditional Chinese conversion tool"
homepage "https://github.com/BYVoid/OpenCC"
url "https://dl.bintray.com/byvoid/opencc/opencc-1.0.2.tar.gz"
sha256 "e0976ec214961d00dfcd34be100cf62f8f71ef5f56b3f27229e7be5e4f07f1e2"
bottle do
sha1 "f49556768692c346a700382cec6746ee3d425ff3" => :yosemite
sha1 "e7024a546b9b322a5cdb43703004a93a5dcd21b9" => :mavericks
sha1 "535532648a4f756a5c20ddda3da12953c7520128" => :mountain_lion
end
depends_on "cmake" => :build
needs :cxx11
def install
ENV.cxx11
system "cmake", ".", "-DBUILD_DOCUMENTATION:BOOL=OFF", *std_cmake_args
system "make"
system "make", "install"
end
end