27 lines
878 B
Bash
27 lines
878 B
Bash
# Template file for 'SLADE'
|
|
pkgname=SLADE
|
|
version=3.1.4
|
|
revision=1
|
|
build_style=cmake
|
|
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=ee3acaaf27292c90a46eea509c3a56564e1339b3080a9648dc6edf5b731be57e
|
|
|
|
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
|
|
}
|