Skip to content

Commit

Permalink
Add temporary icon; document build process
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartlangridge committed May 16, 2016
1 parent 40f54f4 commit 4228f7e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Binary file added app/pick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4228f7e

Please sign in to comment.