35 lines
992 B
Bash
35 lines
992 B
Bash
# Template file for 'freecell-solver'
|
|
pkgname=freecell-solver
|
|
version=5.10.0
|
|
revision=1
|
|
build_style=cmake
|
|
hostmakedepends="perl-Template-Toolkit gperf perl-Path-Tiny
|
|
pysolfc python3-pysol_cards python3-random2 python3-six"
|
|
configure_args="-DFCS_WITH_TEST_SUITE=OFF"
|
|
short_desc="Automatically solves layouts of Freecell and similar variants of solitaire"
|
|
maintainer="Piotr Wójcik <chocimier@tlen.pl>"
|
|
license="MIT"
|
|
homepage="https://fc-solve.shlomifish.org/"
|
|
distfiles="https://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-${version}.tar.xz"
|
|
checksum=cc8671d315e69f6b16fc52ee9fe7515671dcc286ce871b2c13347e1afcfbdd39
|
|
|
|
post_install() {
|
|
vlicense COPYING.txt
|
|
}
|
|
|
|
libfreecell-solver_package() {
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so*"
|
|
}
|
|
}
|
|
|
|
libfreecell-solver-devel_package() {
|
|
depends="libfreecell-solver>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|