27 lines
926 B
Bash
27 lines
926 B
Bash
# Template file for 'SLADE'
|
|
pkgname=SLADE
|
|
version=3.1.10
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DCL_WX_CONFIG=wx-config-gtk3"
|
|
hostmakedepends="pkg-config p7zip"
|
|
makedepends="SFML-devel fluidsynth-devel freeimage-devel ftgl-devel glew-devel
|
|
gtk+3-devel libcurl-devel wxWidgets-gtk3-devel"
|
|
short_desc="Modern editor for Doom-engine based games"
|
|
maintainer="John <johnz@posteo.net>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://github.com/sirjuddington/SLADE"
|
|
changelog="https://github.com/sirjuddington/SLADE/releases/tag/${version}"
|
|
distfiles="https://github.com/sirjuddington/SLADE/archive/${version}.tar.gz"
|
|
checksum=5e543d845432c5b310b942908e0a6e5c32b3aec71c087935e5cb7fbc0982b311
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
configure_args+=" -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3"
|
|
fi
|
|
|
|
pre_configure() {
|
|
case $XBPS_TARGET_MACHINE in
|
|
x86_64* | i686*);;
|
|
*) sed -i '/D_USE_SSE/d' src/CMakeLists.txt;;
|
|
esac
|
|
}
|