liquidwar: update to 5.6.5

Also make the `--disable-asm` correct.
This commit is contained in:
q66 2019-01-27 03:15:28 +01:00 committed by maxice8
parent 61b194b125
commit 7d876c8a4c
2 changed files with 10 additions and 10 deletions

View file

@ -9,8 +9,8 @@
data->port = port;
data->busy_players = busy_players;
data->max_players = max_players;
- strncpy (data->password, password, URL_SIZE);
- strncpy (data->comment, comment, URL_SIZE);
- strncpy (data->password, password, PASSWORD_SIZE);
- strncpy (data->comment, comment, COMMENT_SIZE);
+ strncpy (data->password, password, sizeof(data->password));
+ strncpy (data->comment, comment, sizeof(data->comment));
}

View file

@ -1,23 +1,23 @@
# Template file for 'liquidwar'
pkgname=liquidwar
version=5.6.4
revision=2
version=5.6.5
revision=1
build_style="gnu-configure"
make_build_args="GAMEDIR=/usr/bin DATADIR=/usr/share/liquidwar"
make_install_args="GAMEDIR=/usr/bin DATADIR=/usr/share/liquidwar"
make_install_target="install_nolink"
maintainer="Orphaned <orphan@voidlinux.org>"
hostmakedepends="python"
makedepends="allegro4-devel"
license="GPL"
homepage="http://www.ufoot.org/liquidwar"
short_desc="A unique multiplayer wargame"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="http://www.ufoot.org/liquidwar"
distfiles="http://www.ufoot.org/download/${pkgname}/v5/${version}/${pkgname}-${version}.tar.gz"
checksum=32c52e4588e8e723f907ef43703b4ddf009e8ff1f29555c09bcc1f70bf5b93a3
checksum=dad0aa84dd416cad055421ed9b40df39efae78d3df759c0583c64c54f7f2ff5f
pre_configure() {
# The assembly only exists for 32 bit platforms
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
# The assembly only exists for 32 bit x86
if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
configure_args+=" --disable-asm"
fi
}