You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
602 B
27 lines
602 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit versionator
|
|
|
|
MY_PV="$(replace_version_separator 1 '-')EST"
|
|
MY_P="${PN}-${MY_PV}"
|
|
|
|
DESCRIPTION="Elle Stone's well-behaved RGB and grey ICC profiles"
|
|
HOMEPAGE="https://ninedegreesbelow.com/photography/lcms-make-icc-profiles.html"
|
|
SRC_URI="https://github.com/ellelstone/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="CC-BY-SA-3.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
default
|
|
|
|
insinto /usr/share/color/icc/ellestone
|
|
doins profiles/*.icc
|
|
}
|