guru/dev-cpp/indicators/indicators-2.2.ebuild
Anna (cybertailor) Vyalkova 628c55a757
dev-cpp/indicators: set pkgconfig version
Closes: https://bugs.gentoo.org/859697
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-10-30 16:04:00 +05:00

26 lines
573 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="Activity indicators for modern C++"
HOMEPAGE="https://github.com/p-ranav/indicators"
SRC_URI="https://github.com/p-ranav/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
QA_PKGCONFIG_VERSION="${PV}.0"
src_install() {
cmake_src_install
rm -r "${ED}"/usr/share/licenses || die
docompress -x /usr/share/doc/${PF}/samples
use examples && dodoc -r demo samples
}