Date: Tuesday, June 16, 2020 @ 18:24:24 Author: bgyorgy Revision: 646251
Move qstopmotion from AUR Added: qstopmotion/ qstopmotion/trunk/ qstopmotion/trunk/PKGBUILD qstopmotion/trunk/qstopmotion.appdata.xml -------------------------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ qstopmotion.appdata.xml | 27 +++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) Added: qstopmotion/trunk/PKGBUILD =================================================================== --- qstopmotion/trunk/PKGBUILD (rev 0) +++ qstopmotion/trunk/PKGBUILD 2020-06-16 18:24:24 UTC (rev 646251) @@ -0,0 +1,32 @@ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=qstopmotion +pkgver=2.5.0 +pkgrel=2 +pkgdesc="Application for creating stop-motion animation movies" +url="http://qstopmotion.org/" +license=(GPL2) +arch=(x86_64) +depends=(ffmpeg libgphoto2 qt5-multimedia qwt v4l-utils) +makedepends=(cmake) +source=("https://downloads.sourceforge.net/$pkgname/Version_${pkgver//./_}/$pkgname-$pkgver-Source.tar.gz" + "qstopmotion.appdata.xml") +sha256sums=('1df93e4a42898f4fd6c5ab35bbc82e38e367e7dd3885b44d025ac0d0cb1828d0' + 'fd0c4a63f3cd407143257141ab50cacd500821ded2ba1141a6b54def3490b3f1') + +prepare() { + [[ -d build ]] || mkdir build +} + +build() { + cd build + cmake -G "Unix Makefiles" ../$pkgname-$pkgver-Source/ \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install + install -Dm644 ../$pkgname.appdata.xml "$pkgdir/usr/share/metainfo/$pkgname.appdata.xml" +} Added: qstopmotion/trunk/qstopmotion.appdata.xml =================================================================== --- qstopmotion/trunk/qstopmotion.appdata.xml (rev 0) +++ qstopmotion/trunk/qstopmotion.appdata.xml 2020-06-16 18:24:24 UTC (rev 646251) @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<component type="desktop-application"> + <id>org.qstopmotion.qstopmotion</id> + <launchable type="desktop-id">qstopmotion.desktop</launchable> + <name>qStopMotion</name> + <summary>Program to create stop-motion animations</summary> + <metadata_license>CC0-1.0</metadata_license> + <project_license>GPL-2.0</project_license> + <description> + <p>Program to create stop-motion animations. Features:</p> + <ul> + <li>Project management using Scenes, Takes and Exposures</li> + <li>Live-View of the camera picture</li> + <li>Onion-Scinning</li> + <li>Take pictures from WebCam, Digicam and Camera</li> + <li>Import of existing pictures</li> + <li>Export to different video formats</li> + </ul> + </description> + <screenshots> + <screenshot type="default"> + <image>http://qstopmotion.org/images/screenshots/mode_mixing.png</image> + </screenshot> + </screenshots> + <url type="bugtracker">https://sourceforge.net/p/qstopmotion/tickets/</url> + <url type="homepage">http://qstopmotion.org/</url> +</component>
