Re: [Sugar-devel] Need help with setting up development environment on ubuntu

2019-01-11 Thread James Cameron
You lack dependencies required for building. A simplified method for installing these dependencies can be found in https://github.com/sugarlabs/sugar/blob/master/docs/development-environment.md#native-sugar On Sat, Jan 12, 2019 at 12:32:48AM +0530, Mayank Kaushik wrote: > Ok so I tried making

Re: [Sugar-devel] Need help with setting up development environment on ubuntu

2019-01-11 Thread D. Joe
A search of Ubuntu's packages via their package web interface https://packages.ubuntu.com/intltool shows intltool seems to be a thing. You can install it, amongst other ways, via sudo apt-get install intltool I don't know if that will be sufficient, or if you'll need to add additional

Re: [Sugar-devel] Need help with setting up development environment on ubuntu

2019-01-11 Thread Mayank Kaushik
Ok so I tried making changes to sugar as well.I tried doing https://github.com/sugarlabs/sugar#building but failed at the first step i.e. run autogen.sh.The error given is:- ./autogen.sh: 11: ./autogen.sh: intltoolize: not found ./autogen.sh: 12: ./autogen.sh: autoreconf: not found ./autogen.sh:

Re: [Sugar-devel] Need help with setting up development environment on ubuntu

2019-01-11 Thread Tony Anderson
On Ubuntu, activities are stored in a system folder: /usr/share/sugar/activities. However any activity can be made local in /home/username/Activities. The activities are written in Python and so changes can be made directly in the source code. The changes can be tested by running the activity.

Re: [Sugar-devel] Need help with setting up development environment on ubuntu

2019-01-11 Thread Hrishi Patel
Yes, when you install, it only comes with a few activities. You could clone the activity repository from GitHub.com/sugarlabs then install activity : "python setup.py install". You can also get activities from activities.sugarlabs.org On Fri, Jan 11, 2019, 2:31 PM Mayank Kaushik I tried to