Package Details: lgogdownloader 3.12-1

Git Clone URL: https://aur.archlinux.org/lgogdownloader.git (read-only, click to copy)
Package Base: lgogdownloader
Description: Open source downloader for GOG.com games, uses the GOG.com API
Upstream URL: https://sites.google.com/site/gogdownloader/
Keywords: games gaming gog gog.com
Licenses: custom:WTFPL
Submitter: tea
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 73
Popularity: 0.24
First Submitted: 2012-08-01 22:40 (UTC)
Last Updated: 2023-10-29 13:32 (UTC)

Pinned Comments

FabioLolix commented on 2023-10-03 22:03 (UTC)

  • every time you have error while loading shared libraries: libXXX.so.XXX: cannot open shared object file: No such file or directory for build from source programs you have to rebuild it

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

itoijala commented on 2014-08-22 12:01 (UTC)

Please also include the man page in the package.

tea commented on 2013-03-19 21:54 (UTC)

Updated to 2.3, also a PKGBUILD for the -git version is at https://aur.archlinux.org/packages/lgogdownloader-git/

tea commented on 2013-03-11 22:49 (UTC)

And it's fixed again.

tea commented on 2013-03-11 18:03 (UTC)

Unfortunately the downloader is not working at the moment due to changes in the GOG API. The developer is working on fixing this. Follow developments here: http://www.gog.com/forum/general/lgogdownloader_gogdownloader_for_linux/post100

tea commented on 2013-01-31 18:32 (UTC)

And we're already up to 1.15.

tea commented on 2013-01-31 13:11 (UTC)

Sorry that took me far too long - it's been one of those weeks! The PKGBUILD is now updated and works with jsoncpp like it should.

<deleted-account> commented on 2013-01-24 10:45 (UTC)

Updated PKGBUILD for version 1.14 which works with jsoncpp version 0.5.0 # Maintainer: Joe Davison <joedavison.davison@gmail.com> pkgname=lgogdownloader pkgver=1.14 pkgrel=1 pkgdesc="An open source downloader for GOG.com games, uses the GOG.com API" url="http://www.gog.com/en/forum/general/lgogdownloader_gogdownloader_for_linux" arch=(i686 x86_64) license=(WTFPL) depends=('boost' 'jsoncpp' 'liboauth' 'rhash' 'tinyxml' 'htmlcxx' 'curl') source=(http://sites.google.com/site/gogdownloader/$pkgname-$pkgver.tar.gz) sha256sums=('d3545d889510ec21b9b5c78267a379c2fff2865f92ab3885ba096c3401ec7162') build() { cd "$srcdir/$pkgname-$pkgver" make release } package() { install -D -m 755 $srcdir/$pkgname-$pkgver/bin/Release/$pkgname \ $pkgdir/usr/bin/lgogdownloader }

smls commented on 2013-01-22 11:04 (UTC)

I think you should not update to a version that requires unreleased versions of libraries. No one benefits from a PKGBUILD that does not build. Better keep it at a version that builds, and upgrade only once all requirements can be met.

tea commented on 2013-01-05 23:09 (UTC)

Updated to 1.12. Note that it won't build without modifying the jsoncpp package to install jsoncpp version 0.6.0-rc2. Here's a PKGBUILD to do just that (you probably shouldn't use this): pkgname=jsoncpp pkgver=0.6.0 pkgrel=2 pkgdesc="A JSON C++ library" url="http://jsoncpp.sourceforge.net/" license="Public" arch=('i686' 'x86_64') makedepends=('scons' 'gcc') depends=('gcc-libs') source=("http://sourceforge.net/projects/jsoncpp/files/jsoncpp/0.6.0-rc2/jsoncpp-src-${pkgver}-rc2.tar.gz/download") md5sums=('363e2f4cbd3aeb63bf4e571f377400fb') build(){ cd ${startdir}/src/${pkgname}-src-${pkgver}-rc2 scons platform=linux-gcc mkdir -p ${pkgdir}/usr/include/jsoncpp cp -r include/json ${pkgdir}/usr/include/jsoncpp/json mkdir -p ${pkgdir}/usr/lib cp buildscons/linux-gcc-*/src/lib_json/libjson_linux-gcc*libmt.so ${pkgdir}/usr/lib/ cd ${pkgdir}/usr/lib/ ln -sf libjson_linux-gcc-*_libmt.so libjsoncpp.so }