Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support for compilation on macOS #109

Open
paulfioravanti opened this issue Aug 22, 2023 · 0 comments
Open

Adding support for compilation on macOS #109

paulfioravanti opened this issue Aug 22, 2023 · 0 comments

Comments

@paulfioravanti
Copy link
Contributor

In my Typist.pk3 fork, I needed to make some changes in the compilation scripts in order to get compilation working on macOS.

Would you be interested in getting a pull request that integrates these changes into the current scripts? In order to keep original script lines in tact, I'm currently thinking perhaps some kind of branching code could be added like, for example:

scripts/import_clematis.sh

if [[ "$OSTYPE" == "darwin"* ]]; then
  find . -name "*.zs" -print0 | xargs -0 gsed -i 's/Clematis/tt_Clematis/g'
else
  find . -name "*.zs" -print0 | xargs --null sed -i 's/Clematis/tt_Clematis/g'
fi

Or, perhaps all the changes could go into a different set of files. Any opinions on this idea?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant