結構面倒だったので、情報共有
###試行錯誤
楽をしたくて、wineパッケージ wineskin, EasyWineを試すが起動せず。結局、素のままwineを使用することにした。
###install
wineのinstall. 前提homebrewを導入済みであること。
cask とxquartzのinstall
brew install caskroom/cask/brew-cask
brew cask install xquartz
wineのinstall
brew install --devel wine
###文字化け対策
文字化けするので、フォントをwineに導入(Migu1MとMigu1P)
cp Downloads/migu-1p-20150712/*ttf .wine/drive_c/windows/Fonts/
wineにフォントを教える。
.wine/user.regの最後に以下を追記
[Software\\Wine\\Fonts\\Replacements] 1474815800 0
"MS Gothic"="Migu 1M"
"MS PGothic"="Migu 1M"
"MS Sans Serif"="Migu 1P"
"MS Shell Dlg"="Migu 1M"
"MS UI Gothic"="Migu 1P"
"Tahoma"="Migu 1P"
"\xff2d\xff33 \x30b4\x30b7\x30c3\x30af"="Migu 1M"
"\xff2d\xff33 \xff30\x30b4\x30b7\x30c3\x30af"="Migu 1P"
A5M2.exeを起動
$wine A5M2.exe &
以上