Hello Linux Geeksters. As you may know, Ubuntu Developer Tools Center is an command-line, open-source tool that enables the users to easily install the main platforms for Android application development.
Recently, Ubuntu Developer Tools Center has been renamed to Ubuntu Make, the latest version available being Ubuntu Make 0.6.1, which has been recently released, coming with the below changes:
- Set dart-editor as the command to install the editor and adapt the tests to this
- Fix some strings not marked for translations
- Print help for category with no default framework
- Fix get binary depends with empty starting line in debian/control
- Add missing tests deps in debian/tests/control
In this article I will show you how to install Ubuntu Make 0.6.1 on Ubuntu 15.04 Vivid Vervet, Ubuntu 14.10 Utopic Unicorn, Ubuntu 14.04 Trusty Tahr and derivative systems like Linux Mint 17.1 Rebecca, Linux Mint 17 Qiana, Pinguy OS 14.04, Elementary OS 0.3 Freya, Deepin 2014, Peppermint Five, LXLE 14.04, Linux Lite 2.
Follow the instructions for your system exactly, in order to get a successful installation.
For Ubuntu 15.04, Ubuntu Make 0.6.1 is available via the default repositories, so all you have to do is update the local repository index and install the ubuntu-developer-tools-center package:
$ sudo apt-get update
$ sudo apt-get install ubuntu-make
To install Ubuntu Make 0.6.1 on Ubuntu 14.10, Ubuntu 14.04 and derivative systems, we have to add a third party PPA, update the local repository index and install the ubuntu-developer-tools-center package. Like this:
$ sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
$ sudo apt-get update
$ sudo apt-get install ubuntu-make
Usage instructions:
To get information about ubuntu-make, run umake –help (there are two minus signs before help):
To install GO, do:
$ sudo umake go go-lang
To install dartlang, do:
$ sudo umake dart editor
To install pycharm, do:
$ sudo umake ide pycharm
To install eclipse, do:
$ sudo umake ide eclipse
To install IntelliJ IDEA, do:
$ sudo umake ide idea-ultimate
To install IntelliJ IDEA Community Edition, do:
$ sudo umake ide idea
To install Webstorm, do:
$ sudo umake ide webstorm
To install pycharm-professional, do:
$ sudo umake ide pycharm-professional
To install pycharm-educational, do:
$ sudo umake ide pycharm-educational
To install Phpstorm, do:
$ sudo umake ide phpstorm
To install Rubymine, do:
$ sudo umake ide rubymine
To install Stencyl, do:
$ sudo umake games stencyl
To install Android NDK, do:
$ sudo umake android android-ndk
To install Android Studio, do:
$ sudo umake android android-studio
To install Firefox Dev, do:
$ sudo umake web firefox-dev
To remove any of this tools, just write –remove (minus minus remove) at the end of the installation command. Example:
$ sudo umake web firefox-dev --remove
Leave a Reply