Date: Wednesday, January 23, 2019 @ 17:54:21 Author: arojas Revision: 427296
Bring back clipgrab, finally ported to Qt5 Added: clipgrab/ clipgrab/trunk/ clipgrab/trunk/PKGBUILD clipgrab/trunk/clipgrab.desktop ------------------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ clipgrab.desktop | 13 +++++++++++++ 2 files changed, 51 insertions(+) Added: clipgrab/trunk/PKGBUILD =================================================================== --- clipgrab/trunk/PKGBUILD (rev 0) +++ clipgrab/trunk/PKGBUILD 2019-01-23 17:54:21 UTC (rev 427296) @@ -0,0 +1,38 @@ +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Alois Nespor <[email protected]> +# Contributor: kikadf <[email protected]> +# Contributor: Antonio Rojas <[email protected]> +# Contributor: Stefan Husmann <[email protected]> +# Contributor: thacrazze <thacrazze|googlemail|com> + +pkgname=clipgrab +pkgver=3.8.0 +pkgrel=1 +pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, MyVideo, ...' +arch=(x86_64) +url='http://clipgrab.org' +license=(GPL3) +depends=(qt5-webengine) +optdepends=('ffmpeg: for the conversion functionality') +source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz + $pkgname.desktop) +sha256sums=('e67485514e12ed4c4c7a1e70d1f9d51b093677088617ae44c2f68f729d4490d6' + '840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f') + +build() { + cd $pkgname-$pkgver + + qmake \ + QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" \ + QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" \ + QMAKE_LFLAGS_RELEASE="$LDFLAGS" \ + clipgrab.pro + make +} + +package() { + cd $pkgname-$pkgver + install -Dm755 $pkgname -t "$pkgdir"/usr/bin/ + install -Dm644 icon.png "$pkgdir/usr/share/pixmaps/$pkgname.png" + install -Dm644 "$srcdir"/$pkgname.desktop -t "$pkgdir"/usr/share/applications/ +} Added: clipgrab/trunk/clipgrab.desktop =================================================================== --- clipgrab/trunk/clipgrab.desktop (rev 0) +++ clipgrab/trunk/clipgrab.desktop 2019-01-23 17:54:21 UTC (rev 427296) @@ -0,0 +1,13 @@ +[Desktop Entry] +Type=Application +Encoding=UTF-8 +Name=ClipGrab +GenericName=Video Downloader +GenericName[de]=Video-Downloader +Comment=Download videos and convert it +Comment[de]=Videos herunterladen und konvertieren +Icon=/usr/share/pixmaps/clipgrab.png +Exec=clipgrab +TryExec=clipgrab +Terminal=false +Categories=Qt;AudioVideo;Audio;Video;
