LGOGDownloader: update to 3.5

This commit is contained in:
RunningDroid 2019-04-22 21:23:51 -04:00 committed by Helmut Pozimski
parent e9cd955029
commit 99fe233c9b

View file

@ -1,6 +1,6 @@
# Template file for 'LGOGDownloader'
pkgname=LGOGDownloader
version=3.4
version=3.5
revision=1
wrksrc="lgogdownloader-${version}"
build_style=cmake
@ -12,8 +12,18 @@ maintainer="RunningDroid <runningdroid@zoho.com>"
license="WTFPL"
homepage="https://github.com/Sude-/lgogdownloader"
distfiles="https://github.com/Sude-/lgogdownloader/archive/v${version}.tar.gz"
checksum=22a87b4cff30810159858bcb83c2e37f55d21efeed8307ce3d2afb94ea4d337e
checksum=a7493f89e80796a4870d8fbc7996ff836b614a81af1471fc67025a4b194f28be
if [ -z "$CROSS_BUILD" ]; then
hostmakedepends+=" help2man"
fi
case "$XBPS_TARGET_MACHINE" in
armv6*) makedepends+=" libatomic-devel" # Need libatomic for __atomic_fetch_add_8 etc.
esac
pre_configure() {
case "$XBPS_TARGET_MACHINE" in
armv6*) sed -i 's/PRIVATE ${ZLIB_LIBRARIES}/\0\n atomic/' CMakeLists.txt
esac
}