#Pinta - Simple Gtk# Paint Program
Copyright (C) 2010 Jonathan Pobst
Pinta is a Gtk# clone of Paint.Net 3.0
Original Pinta code is licensed under the MIT License:
See license-mit.txt
for the MIT License
Code from Paint.Net 3.36 is used under the MIT License and retains the original headers on source files.
See license-pdn.txt
for Paint.Net's original license.
##Icons are from:
-
Paint.Net 3.0 Used under MIT License
-
Silk icon set Used under Creative Commons Attribution 3.0 License
-
Fugue icon set Used under Creative Commons Attribution 3.0 License
##Getting help/contributing:
- You can get technical help on the Pinta Google Group
- You can report bugs on Launchpad bug tracker
- You can make suggestions on the Future Ideas Page
- You can help translate Pinta to your native language on Launchpad translations
- You can fork the project on Github
- You can get help in #pinta on irc.gnome.org.
- For details on patching, take a look at
patch-guidelines.md
in the repo.
##Linux Build and Installation Instructions:
Building Pinta requires the following software:
mono mono-xbuild automake autoconf libmono-cairo2.0-cil gtk-sharp2
Pinta only supports version 2.8 or higher of Mono.
To build Pinta, run:
./autogen.sh
make
sudo make install
or if building from a tarball, run:
./configure
make
sudo make install
To use different installation directory than the default (/usr/local), run this instead:
./autogen.sh --prefix=<install directory>
To uninstall Pinta, run:
sudo make uninstall
To clean all files created during the build process, run:
make cleanall
Note This will require you to rerun autogen.sh
in order to run more make
commands.
For a list of more make commands, run:
make help