9573a2cf2e
Use www.gnu.org as homepage, old site is unreachable - arm-cross fixed by @fosslinux Co-authored-by: fosslinux <fosslinux@aussies.space>
34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Template file for 'gnubg'
|
|
pkgname=gnubg
|
|
version=1.06.002
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="--disable-cputest ax_cv_gcc_x86_cpuid_0x00000001=6000000"
|
|
hostmakedepends="pkg-config python gdk-pixbuf-devel"
|
|
makedepends="libcurl-devel libglib-devel gtk+-devel gtkglext-devel python-devel
|
|
libcanberra-devel readline-devel readline sqlite-devel"
|
|
depends="python"
|
|
short_desc="GNU Backgammon game"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnu.org/software/gnubg/"
|
|
distfiles="$GNU_SITE/gnubg/$pkgname-release-$version-sources.tar.gz"
|
|
checksum=ce1b0b0c1900717cc598032a14cf8c0ee60faf24d84368b39922c0102983bc87
|
|
LDLIBS="-lm -lreadline -lpython2.7"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" ${pkgname}"
|
|
CPPFLAGS="-I$XBPS_CROSS_BASE/usr/include/python2.7"
|
|
fi
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*) configure_args+=" --enable-simd=sse2" ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
makeweights < gnubg.weights > gnubg.wd
|
|
makebearoff -o 6 -s 7999999 -f gnubg_os0.bd
|
|
makebearoff -t 6x6 -f gnubg_ts0.bd
|
|
fi
|
|
}
|