30 lines
575 B
Bash
30 lines
575 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CMAKE_MAKEFILE_GENERATOR=emake
|
|
inherit cmake
|
|
|
|
DESCRIPTION="A small collection of solitaire/patience games to play in the terminal"
|
|
HOMEPAGE="https://nielssp.dk/csol"
|
|
SRC_URI="https://github.com/nielssp/csol/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
DEPEND="sys-libs/ncurses"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
CMAKE_IN_SOURCE_BUILD=1
|
|
|
|
src_configure() {
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
}
|