1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
# Deepin Picker
Deepin Picker: Simplest color picker.
## Dependencies
* libxcb-util0
* libdtkgui
* libdtkwidget
* qttools5
* libqt5svg5
* libxtst
### Build dependencies
_The **master** branch is current development branch, build dependencies may changes without update README.md, refer to `./debian/control` for a working build depends list_
* debhelper (>= 9)
* Qt5(>=5.6)
* pkg-config
* qt5-qmake
* libxcb-util0-dev
* libdtkgui-dev
* libdtkwidget-dev
* qttools5-dev-tools
* libqt5svg5-dev
* libxtst-dev
## Installation
### Build from source code
1. Make sure you have installed all dependencies.
_Package name may be different between distros, if deepin-picker is available from your distro, check the packaging script delivered from your distro is a better idea._
Assume you are using [Deepin](https://distrowatch.com/table.php?distribution=deepin) or other debian-based distro which got deepin-picker delivered:
``` shell
$ apt build-dep deepin-album
```
2. Build:
```
$ cd deepin-picker
$ mkdir build
$ cd build
$ qmake ..
$ make
```
3. Install:
```
$ sudo make install
```
## Usage
Execute `deepin-picker`
## Getting help
Any usage issues can ask for help via
* [Gitter](https://gitter.im/orgs/linuxdeepin/rooms)
* [IRC channel](https://webchat.freenode.net/?channels=deepin)
* [Forum](https://bbs.deepin.org)
* [WiKi](http://wiki.deepin.org/)
## Getting involved
We encourage you to report issues and contribute changes
* [Contribution guide for users](http://wiki.deepin.org/index.php?title=Contribution_Guidelines_for_Users)
* [Contribution guide for developers](http://wiki.deepin.org/index.php?title=Contribution_Guidelines_for_Developers).
## License
Deepin Picker is licensed under [GPL-3.0-or-later](LICENSE.txt).
|