mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
This does no harm, and was sufficient to make the following
command pass on my development machine:
ruby1.9 /usr/bin/rake test
14 lines
408 B
Ruby
14 lines
408 B
Ruby
# encoding: UTF-8
|
|
class Baiduinput < Cask
|
|
url 'http://shouji.baidu.com/download/1000e/baiduinput_mac_v3.2_1000e.dmg'
|
|
homepage 'http://wuxian.baidu.com/input/mac.html'
|
|
version '3.2'
|
|
sha1 'f3d446d866e7c80fd250abac9f553d508092e656'
|
|
install '安装百度输入法.pkg'
|
|
uninstall(
|
|
:pkgutil => 'com.baidu.inputmethod.*',
|
|
:files => [
|
|
'/Library/Input Methods/BaiduIM.app'
|
|
]
|
|
)
|
|
end
|