add csol - terminal solitaire games

This commit is contained in:
Brian S. Stephan 2025-09-02 11:30:06 -05:00
parent 00c9193aa1
commit 5ab554e4f6
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 30 additions and 0 deletions

1
games-misc/csol/Manifest Normal file
View File

@ -0,0 +1 @@
DIST v1.6.0.tar.gz 167611 BLAKE2B 0f798894333cc30d10b40b98c60e92dce5ecbe8c19f8db203a8abc38323ca8353155cf1106fe775f6e82e0e88b7291b6361744d8e5be66fdbdc0f428a9e83dfb SHA512 2bac4e373d84c585e8bdb4671e5a446d2a174f8bfa60eaa6a8fe0d1ff5074878f2f8d0907297dd1452e5e5b1e7bfd73ba672a7820a3d4664e9abd6e654f57107

View File

@ -0,0 +1,29 @@
# 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"
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
}