blob: d36c835eb8253535fc6956c784e0f3299647f6b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
if [[ ${PV} == 9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/Grumbel/${PN}.git"
else
SRC_URI="https://github.com/Grumbel/${PN}/archive/v${PV}/${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Tiny CMake Module Collections"
HOMEPAGE="https://github.com/Grumbel/tinycmmc"
LICENSE="GPL-3+"
SLOT="0"
|