# Maintainer: Martchus # All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where # you also find the URL of a binary repository. _name=videodownloader _reponame=videodownloader pkgname=videodownloader-git pkgver=27.8960d5b pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A video downloader with Qt GUI (currently only YouTube and Vimeo are maintained)" license=('GPL') depends=('qtutilities' 'openssl' 'desktop-file-utils' 'xdg-utils') makedepends=('cmake' 'qt5-tools' 'git') provides=('videodownloader') conflicts=('videodownloader') url="https://github.com/Martchus/${_reponame}" source=("${_reponame}::git://github.com/Martchus/${_reponame}.git") sha256sums=('SKIP') pkgver() { cd "${srcdir}/${pkgname}" echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" } build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" make DESTDIR="${pkgdir}" install }