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.85
First Submitted: 2013-03-19 15:06 (UTC)
Last Updated: 2023-10-29 13:33 (UTC)

Required by (43)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

hollunder commented on 2016-05-19 07:49 (UTC)

[ 36%] Building CXX object CMakeFiles/lgogdownloader.dir/main.cpp.o /home/murks/cower/lgogdownloader-git/src/lgogdownloader/src/downloader.cpp:22:22: fatal error: tinyxml2.h: No such file or directory #include <tinyxml2.h> ^ compilation terminated. CMakeFiles/lgogdownloader.dir/build.make:134: recipe for target 'CMakeFiles/lgogdownloader.dir/src/downloader.cpp.o' failed make[2]: *** [CMakeFiles/lgogdownloader.dir/src/downloader.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs.... CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/lgogdownloader.dir/all' failed make[1]: *** [CMakeFiles/lgogdownloader.dir/all] Error 2 Makefile:127: recipe for target 'all' failed make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... community/tinyxml 2.6.2-4 [installed]

itoijala commented on 2016-01-24 08:26 (UTC)

Could you update .SRCINFO with the new version scheme? My AUR helper keeps telling me that there is an update from 2.26.r6.g14d9d3d-1 -> 20160120-2.

<deleted-account> commented on 2015-09-09 03:11 (UTC)

That's because you're not looking at the latest one. I deleted the old one and it's apparently been overwritten.

tea commented on 2015-09-08 22:10 (UTC)

Your ix.io link actually appears to lead to a samba configuration file.

<deleted-account> commented on 2015-09-07 01:50 (UTC)

Argh, apologies for the accidental flag out of date, I was trying to hit Vote. I swear I'm not being that pushy about updating the PKGBUILD!

<deleted-account> commented on 2015-09-07 01:47 (UTC)

As a perl programmer the replacement pattern comes more naturally to me. You can actually get rid of it entirely and just use a bare variable by renaming the git repo as it's cloned, as here: http://ix.io/kFg Also, I was unaware that github allowed anonymous git access, as I've seen lack of account cited as the problem with using 'git://' instead of 'git+https://' on other PKGBUILDs.

carstene1ns commented on 2015-09-06 20:44 (UTC)

@Celti: great! I actually already requested parts of your changes below... ;) My 2 cents: Using https to access github is a good idea, but your reason is simply wrong. You will not need a github account or ssh at all to clone from the git:// url. The only real benefit in using https here is that git uses a port (9418) that may be blocked by firewalls and the https port (443) is normally not blocked. Any reason to prefer a replacement pattern (${pkgname/-git//}) over a simple "delete from the end" (${pkgname%-*})?

<deleted-account> commented on 2015-09-06 16:09 (UTC)

Here is an updated PKGBUILD: http://ix.io/kEL Changes include: * Corrected dependencies. * Use HTTPS to access GitHub for use without a GitHub account/configured SSH key. * Get rid of unnecessary $_gitname variable. * Use proper quoting everywhere. * Use proper pkgver() function. * Don't install the manpage twice (make install includes it). * Include the license in the package.

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

Please also include the man page in the package.

carstene1ns commented on 2014-06-14 12:30 (UTC)

Every -git package should makedepend on 'git'. And you really should use a better identifier in the pkgver function, e.g.: git describe --long | sed -r 's/^v//;s/-/.r/;s/-/./'