Package Details: lgogdownloader-git 3.12.r0.g8e07ba1-1

Git Clone URL: https://aur.archlinux.org/lgogdownloader-git.git (read-only, click to copy)
Package Base: lgogdownloader-git
Description: Open source downloader for GOG.com games, uses the GOG.com API
Upstream URL: https://sites.google.com/site/gogdownloader/
Licenses: custom:WTFPL
Conflicts: lgogdownloader
Provides: lgogdownloader
Submitter: tea
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 9
Popularity: 0.82
First Submitted: 2013-03-19 15:06 (UTC)
Last Updated: 2023-10-29 13:33 (UTC)

Required by (43)

Sources (1)

Latest Comments

1 2 3 Next › Last »

Larrdath commented on 2024-05-12 16:25 (UTC)

It doesn't build anymore, looks like they've removed htmlcxx as a dependency and added tidy instead. Builds fine in a clean chroot after adjusting the PKGBUILD.

FabioLolix commented on 2020-12-07 12:13 (UTC)

curl is a pacman dependency and will be always be installed

LuckyTurtleDev commented on 2020-12-07 11:39 (UTC)

curl is a missing dependency. I did not see this the last time I hand look at this package.

LuckyTurtleDev commented on 2020-11-30 14:06 (UTC) (edited on 2020-11-30 14:13 (UTC) by LuckyTurtleDev)

For the new reCAPTCHA feature you need set the cmake flag -DUSE_QT_GUI=ON and the new dependency qt5-webengine. Without this feature you can not login anymore, because you can not solve the captcha.

Furthermore the liboauth dependency is not needed anymore (see comment from frankyboy).

diff --git a/PKGBUILD b/PKGBUILD
index b62812f..7dc1c73 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
 # Maintainer: Joe Davison <joe@warhaggis.com>

 pkgname=lgogdownloader-git
-pkgver=3.0.r7.ge045612
-pkgrel=2
+pkgver=3.7.r12.g18166c0
+pkgrel=3
 pkgdesc="An open source downloader for GOG.com games, uses the GOG.com API (git version)"
 url="http://www.gog.com/en/forum/general/lgogdownloader_gogdownloader_for_linux"
 arch=(i686 x86_64)
 license=(WTFPL)
-depends=('boost' 'boost-libs' 'jsoncpp' 'liboauth' 'rhash' 'htmlcxx' 'tinyxml2') 
+depends=('boost' 'boost-libs' 'jsoncpp' 'rhash' 'htmlcxx' 'tinyxml2' 'qt5-webengine') 
 makedepends=('help2man' 'cmake' 'git')  
 _releasever=`echo $pkgver | sed 's/\.r.*//'`
 provides=('lgogdownloader=$_releasever')
@@ -33,7 +33,10 @@ prepare() {
 # Possible options for -DCMAKE_BUILD_TYPE are Release and Debug
 # Debug has console spew
        cd build
-       cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+       cmake .. \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DUSE_QT_GUI=ON
 }

 build() {

TheFrenchGhosty commented on 2020-02-03 16:34 (UTC) (edited on 2020-02-03 22:48 (UTC) by TheFrenchGhosty)

lgogdownloader: error while loading shared libraries: libboost_system.so.1.71.0: cannot open shared object file: No such file or directory

The solution is to rebuild/reinstall lgogdownloader-git completely.

frankyboy commented on 2019-11-16 07:39 (UTC)

with this comming https://github.com/Sude-/lgogdownloader/commit/8829f44e378557b4c76411188652648d48617c48 lgogdownloader is no longer depends on liboauth

tea commented on 2016-12-27 01:47 (UTC)

In order to prevent issues with packages like gog-heroes-of-might-and-magic-3-complete-edition, I've added a thing to provides to ensure that the version of lgogdownloader being 'provided' is the same as the current release - previously, the packages which depend on lgogdownloader were shitting a bit because they had explicit versions listed. The method isn't amazing nor completely foolproof - I'm not a genius at writing regular expressions so a better solution would be much appreciated.