diff --git a/README.md b/README.md index d933543..fd0d21d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ -# ColourPicker +# Pick A colour picker app for Ubuntu and Linux which allows picking any colour on the screen and remembers the last few you picked. + +## Building an Ubuntu package + +cd app +pkgme +debuild + +You'll probably need a bunch of build dependencies installed for this to work. (shrug) + diff --git a/app/pick.png b/app/pick.png new file mode 100644 index 0000000..00b1cb3 Binary files /dev/null and b/app/pick.png differ diff --git a/app/setup.py b/app/setup.py index 40a4249..911177c 100644 --- a/app/setup.py +++ b/app/setup.py @@ -15,7 +15,10 @@ packages=['pick'], package_dir={'pick': 'pick'}, - data_files=[(sys.prefix+'/share/applications',['pick.desktop'])], + data_files=[ + (sys.prefix+'/share/applications',['pick.desktop']), + (sys.prefix+'/share/pixmaps', ['pick.png'])] + ], zip_safe=True, include_package_data=True,