| 1 |
MyPaint - drawing program with dynamic brushes for graphic tablets |
| 2 |
|
| 3 |
The license is described in the file LICENSE. |
| 4 |
Documentation can be found within the program and on the homepage: |
| 5 |
http://mypaint.info/ |
| 6 |
A list of contributors can be found in the about dialog. |
| 7 |
|
| 8 |
Building on Linux: |
| 9 |
|
| 10 |
Compile and run: |
| 11 |
|
| 12 |
$ scons |
| 13 |
$ ./mypaint |
| 14 |
|
| 15 |
Install: |
| 16 |
|
| 17 |
# scons prefix=/usr/local install |
| 18 |
|
| 19 |
Uninstall: |
| 20 |
|
| 21 |
# scons prefix=/usr/local install --clean |
| 22 |
|
| 23 |
Install (for packagers): |
| 24 |
|
| 25 |
$ scons prefix=/usr --install-sandbox=path/to/sandbox |
| 26 |
|
| 27 |
(NOTE: the sandbox location must be located under the |
| 28 |
current working directory. The above installs the main |
| 29 |
launch script as "./path/to/sandbox/usr/bin/mypaint". |
| 30 |
Use a symlink if that's too limiting.) |
| 31 |
|
| 32 |
|
| 33 |
Required: pygtk, python, swig, gtk, numpy, pycairo(>=1.4), libpng |
| 34 |
|
| 35 |
Debian users can fetch these dependencies by running: |
| 36 |
|
| 37 |
# apt-get install g++ python-dev libglib2.0-dev python-numpy \ |
| 38 |
swig scons gettext libpng12-dev |
| 39 |
|
| 40 |
Recommended: a pressure sensitive input device (graphic tablet) |
| 41 |
|
| 42 |
|
| 43 |
Take care to update the icon theme cache for your $prefix if you're |
| 44 |
installing mypaint to a location which has one of these files already. If |
| 45 |
you install new icons, any existing icon cache must be updated too, |
| 46 |
otherwise MyPaint won't be able to find its icons even if it looks in the |
| 47 |
right place. For example for an install into /usr (which has one on most |
| 48 |
systems), you should run |
| 49 |
|
| 50 |
$ gtk-update-icon-cache /usr/share/icons/hicolor |
| 51 |
$ chmod a+r /usr/share/icons/hicolor/icon-theme.cache |
| 52 |
|
| 53 |
after installation to ensure that the cache is up to date. Scons won't |
| 54 |
do this for you because the cache file is optional. |
| 55 |
|
| 56 |
If you install to /usr/local, you may need to run this instead: |
| 57 |
|
| 58 |
$ gtk-update-icon-cache --ignore-theme-index /usr/local/share/icons/hicolor |
| 59 |
|
| 60 |
|
| 61 |
Building on Windows: |
| 62 |
|
| 63 |
Starting point for up-to-date information: |
| 64 |
http://wiki.mypaint.info/Development/Packaging#Windows |
| 65 |
|
| 66 |
Building on Mac: |
| 67 |
|
| 68 |
Starting point for up-to-date information: |
| 69 |
http://wiki.mypaint.info/Development/Packaging#OSX |