24 lines
733 B
Bash
24 lines
733 B
Bash
# Template file for 'nudoku'
|
|
pkgname=nudoku
|
|
version=8.0.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-cairo"
|
|
hostmakedepends="automake pkg-config gettext-devel"
|
|
makedepends="ncurses-devel cairo-devel"
|
|
short_desc="Ncurses based sudoku game"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://jubalh.github.io/nudoku/"
|
|
changelog="https://raw.githubusercontent.com/jubalh/nudoku/refs/heads/master/ChangeLog"
|
|
distfiles="https://github.com/jubalh/nudoku/archive/refs/tags/${version}.tar.gz"
|
|
checksum=061ef63cd4754e22024fbfbc5fc103de9e4a90ffe21790a3433c8af770e6da09
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
configure_args+=" --disable-nls"
|
|
fi
|
|
|
|
pre_configure() {
|
|
autoreconf -i
|
|
}
|