33 lines
982 B
Bash
33 lines
982 B
Bash
# Template file for 'cutechess-gui'
|
|
pkgname=cutechess-gui
|
|
version=1.0.0
|
|
revision=1
|
|
build_style=qmake
|
|
hostmakedepends="qt5-qmake"
|
|
makedepends="qt5-devel qt5-svg-devel"
|
|
short_desc="GUI for playing chess"
|
|
maintainer="Imran Khan <imrankhan@teknik.io>"
|
|
license="GPL-3.0-or-later, MIT"
|
|
homepage="https://github.com/cutechess/cutechess"
|
|
distfiles="https://github.com/cutechess/cutechess/archive/gui-${version}.tar.gz"
|
|
checksum=b85967c225e70eed88c1b64d42542bdb21c8f3f52fd17765200073e390aaba04
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-host-tools qt5-devel qt5-svg-devel"
|
|
fi
|
|
|
|
do_install() {
|
|
vbin projects/gui/cutechess
|
|
vinstall dist/linux/cutechess.desktop 644 usr/share/applications
|
|
sed -n '2,23s:^[ ]*::p' projects/gui/components/pgnhighlighter/src/pgnhighlighter.h > COPYING.gui
|
|
vlicense COPYING.gui
|
|
}
|
|
|
|
cutechess-cli_package() {
|
|
short_desc="CLI tool to automate chess engine tournaments"
|
|
pkg_install() {
|
|
vbin projects/cli/cutechess-cli
|
|
vman docs/cutechess-cli.6
|
|
}
|
|
}
|