Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add the JetBrains CLion IDE #170
Merged
Commits
Jump to file or symbol
Failed to load files and symbols.
| @@ -338,6 +338,22 @@ def __init__(self, category): | ||
| packages_requirements=['openjdk-7-jdk', 'jayatana'], | ||
| icon_filename='webide.png') | ||
| +class CLion(BaseJetBrains): | ||
| + """The JetBrains CLion IDE""" | ||
| + download_page_url = "https://www.jetbrains.com/clion/download/download_thanks.jsp?os=linux" | ||
| + executable = "clion.sh" | ||
| + | ||
| + def __init__(self, category): | ||
| + super().__init__(name="CLion", | ||
| + description=_("CLion"), | ||
AbigailBuccaneer
Contributor
|
||
| + category=category, | ||
| + only_on_archs=['i386', 'amd64'], | ||
| + download_page=self.download_page_url, | ||
| + dir_to_decompress_in_tarball='clion-*', | ||
| + desktop_filename='jetbrains-clion.desktop', | ||
| + packages_requirements=['openjdk-7-jdk', 'jayatana'], | ||
| + icon_filename='clion.svg') | ||
| + | ||
| class Arduino(umake.frameworks.baseinstaller.BaseInstaller): | ||
| """The Arduino Software distribution.""" | ||
I would add a little bit more in description, like "Fully integrated C/C++ IDE" (from their website). Sounds ok?