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

tea commented on 2012-12-15 23:07 (UTC)

Woah! So sorry I forgot about this. I will have the updated PKGBUILD up shortly!

glaville commented on 2012-12-15 12:16 (UTC)

Here is an updated PKGBUILD for the version 1.11: # Maintainer: Joe Davison <joedavison.davison@gmail.com> pkgname=lgogdownloader pkgver=1.11 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-fixed liboauth rhash tinyxml htmlcxx curl) source=(http://sites.google.com/site/gogdownloader/$pkgname-$pkgver.tar.gz) sha256sums=('b2b595c201f52d2fffc6b71b22814bd79f40090bd01e10b5a0750c0c16608acf') build() { cd "$srcdir/$pkgname-$pkgver" # fix Arch-specific include error # we're gonna backup api.h first just in case something explodes mv include/api.h include/api.h.bak sed '/jsoncpp/ c\\#include \<jsoncpp\/json.h\>' include/api.h.bak > include/api.h # we also have to do the same on http.h... mv include/http.h include/http.h.bak sed '/jsoncpp/ c\\#include \<jsoncpp\/json.h\>' include/http.h.bak > include/http.h make release } package() { install -D -m 755 $srcdir/$pkgname-$pkgver/bin/Release/$pkgname \ $pkgdir/usr/bin/lgogdownloader }