# Maintainer: Fabio 'Lolix' Loli -> https://github.com/FabioLolix # Contributor: C. Dominik Bódi # Contributor: Joe Davison pkgname=lgogdownloader pkgver=3.7 pkgrel=2 pkgdesc="Open source downloader for GOG.com games, uses the GOG.com API" url="https://sites.google.com/site/gogdownloader/" arch=(x86_64 i686 pentium4) license=('custom:WTFPL') depends=(boost-libs jsoncpp tinyxml2 rhash htmlcxx qt5-webengine) makedepends=(help2man cmake boost) source=("http://sites.google.com/site/gogdownloader/${pkgname}-${pkgver}.tar.gz") sha256sums=('984859eb2e0802cfe6fe76b1fe4b90e7354e95d52c001b6b434e0a9f5ed23bf0') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" [[ -d build ]] || mkdir build } build() { cd "${srcdir}/${pkgname}-${pkgver}/build" cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DUSE_QT_GUI=ON make } package() { cd "${srcdir}/${pkgname}-${pkgver}/build" make DESTDIR=$pkgdir install install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING }