Skip to content

Commit

Permalink
Add phony targets for all plugins (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
rocka authored Jan 27, 2025
1 parent dfbfc57 commit c51cf3a
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,67 @@ main = do
need artifacts
writeFileLines (outputDir </> "artifacts.txt") ("toolchain-versions.json" : artifacts)
getToolchainVersions >>= writeFile' (outputDir </> "toolchain-versions.json") . TL.unpack . TLB.toLazyText . A.encodePrettyToTextBuilder
"fcitx5" ~> do
need
[ "fmt",
"libuv",
"libintl-lite"
]
"app" ~> do
need
[ "fcitx5",
"spell-dict",
"libime",
"chinese-addons-data",
"lua",
"opencc",
"boost",
"zstd"
]
"anthy" ~> do
need
[ "fcitx5",
"anthy-dict"
]
"chewing" ~> do
need
[ "fcitx5",
"libchewing",
"chewing-dict"
]
"hangul" ~> do
need
[ "fcitx5",
"libhangul"
]
"jyutping" ~> do
need
[ "fcitx5",
"libime-jyutping",
"lua",
"opencc",
"boost",
"zstd"
]
"rime" ~> do
need
[ "fcitx5",
"librime"
]
"sayura" ~> do
need
[ "fcitx5"
]
"thai" ~> do
need
[ "fcitx5",
"libthai",
"libiconv"
]
"unikey" ~> do
need
[ "fcitx5"
]
"clean" ~> do
removeFilesAfter outputDir ["//*"]
cmd_ "git" "submodule" "foreach" "--recursive" "git" "reset" "--hard"
Expand Down

0 comments on commit c51cf3a

Please sign in to comment.