19 lines
533 B
Plaintext
19 lines
533 B
Plaintext
|
# Description: Xorg chess interface with support for various engines
|
||
|
# URL: https://www.gnu.org/software/xboard
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: gtk3, texinfo, cairo, librsvg
|
||
|
# Nice to have: fairymax, gnuchess, stockfish
|
||
|
|
||
|
name=xboard
|
||
|
version=4.9.1
|
||
|
release=1
|
||
|
source=("http://gnu.mirrors.hoobly.com/$name/$name-$version.tar.gz")
|
||
|
|
||
|
build() {
|
||
|
cd "$name-$version"
|
||
|
|
||
|
CFLAGS="-fcommon $CXXFLAGS" ./configure --prefix=/usr --disable-nls
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -rf $PKG/usr/share/info
|
||
|
}
|