void-packages/srcpkgs/widelands/template
Helmut Pozimski 428a537d6c widelands: multiple packaging fixes
- widelands looks for it's data relative to the path were the binary resides,
  use an absolute path instead so the data will be found
- wl_render_richtext was installed in /usr, move it to /usr/bin
- COPYING, CREDITS, Changelog and VERSION are installed in /usr, remove them
  before packaging

Closes: #11367 [via git-merge-pr]
2018-02-03 14:32:20 +01:00

51 lines
1.6 KiB
Bash

# Template file for 'widelands'
pkgname=widelands
version=19
revision=5
wrksrc=${pkgname}-build${version}-src
build_style=cmake
configure_args="
-DOPENGL_INCLUDE_DIR=${XBPS_CROSS_BASE}/usr/include
-DOPTION_BUILD_WEBSITE_TOOLS=OFF
-DWL_INSTALL_DATADIR=/usr/share/widelands"
hostmakedepends="python pkg-config"
makedepends="boost-devel icu-devel minizip-devel gettext-devel glu-devel
glew-devel SDL2_gfx-devel SDL2_image-devel SDL2_net-devel
SDL2_mixer-devel SDL2_ttf-devel"
depends="${pkgname}-data-${version}_${revision}"
short_desc="A real-time strategy game"
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
license="GPL-2"
homepage="http://www.widelands.org/"
distfiles="https://launchpad.net/${pkgname}/build${version}/build${version}/+download/${pkgname}-build${version}-src.tar.bz2"
checksum="e511f9d26828a2b71b64cdfc6674e6e847543b2da73961ab882acca36c7c01a6"
CXXFLAGS="-Wno-maybe-uninitialized"
pre_configure() {
if [ -n "$CROSS_BUILD" ]; then
# Upstream could have defined a flag to disable tests,
# or make sure that test binaries are in host format...
patch -p0 < ${FILESDIR}/disable-testing.patch
fi
}
post_install() {
# For some reason the binary is installed as /usr/widelands - move it
vmkdir usr/bin
mv ${DESTDIR}/usr/${pkgname} ${DESTDIR}/usr/bin
mv ${DESTDIR}/usr/wl_render_richtext ${DESTDIR}/usr/bin
# Remove files not needed in the package
rm -f ${DESTDIR}/usr/COPYING ${DESTDIR}/usr/CREDITS ${DESTDIR}/usr/ChangeLog ${DESTDIR}/usr/VERSION
vinstall ${FILESDIR}/${pkgname}.desktop 644 usr/share/applications
}
widelands-data_package() {
noarch=yes
short_desc+=" - data files"
pkg_install() {
vmove usr/share/widelands
}
}