blob: 5790d4b64aa0c75a19462ee4bd9c42351765378b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2018-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
DESCRIPTION="extract colors from pictures"
HOMEPAGE="http://git.2f30.org/colors"
EGIT_REPO_URI="git://git.2f30.org/colors.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="media-libs/libpng"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install () {
dobin ${PN}
doman ${PN}.1
}
|