summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThéo Le Calvar2020-03-02 19:57:29 +0100
committerThéo Le Calvar2020-03-02 19:57:29 +0100
commit7fdc74322815e02609280b2f665b63f770c04d49 (patch)
tree71fd6239a7ead9558bb9eb1c5fc8dea04ebc5009
parent2bf70ab39e94b19c03fe53e22289fbf178db32fe (diff)
downloadaur-7fdc74322815e02609280b2f665b63f770c04d49.tar.gz
add notive about DesktopVideoHelper.service
As of version 11.5 the DesktopVideoHelper.service has to be running for the capture card to work.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
-rw-r--r--decklink.install9
3 files changed, 15 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0802a97320a8..8a6934199eb9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = decklink
pkgdesc = Drivers for Blackmagic Design DeckLink, Intensity or Multibridge video editing cards
pkgver = 11.5
- pkgrel = 1
+ pkgrel = 2
url = https://www.blackmagicdesign.com/support/family/capture-and-playback
arch = i686
arch = x86_64
@@ -10,9 +10,10 @@ pkgbase = decklink
options = !strip
options = staticlibs
source = decklink-11.5.tar.gz::https://www.blackmagicdesign.com/api/register/us/download/9a205dd8b075460b8a021c519258d6cd
- sha256sums = d57b379b7b14e0289e6436d7558de00bcfe5cebb43a0fec5052097f66921c080
+ sha256sums = ebe79003bbe61a97449c93066616be7aa71caa8ddc6c348d9e5c47bc1eacd725
pkgname = decklink
+ install = decklink.install
depends = dkms
depends = qt5-base
depends = libpng
diff --git a/PKGBUILD b/PKGBUILD
index 6ca736abbc52..0d494f2b420f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ pkgbase=decklink
pkgname=(decklink mediaexpress)
_pkgname=decklink
pkgver=11.5
-pkgrel=1
+pkgrel=2
pkgdesc="Drivers for Blackmagic Design DeckLink, Intensity or Multibridge video editing cards"
arch=('i686' 'x86_64')
url="https://www.blackmagicdesign.com/support/family/capture-and-playback"
@@ -30,9 +30,10 @@ DLAGENTS=("https::/usr/bin/curl \
)
source=("${_pkgsrc_file}"::"${_pkgsrc_url}")
-sha256sums=('d57b379b7b14e0289e6436d7558de00bcfe5cebb43a0fec5052097f66921c080')
+sha256sums=('ebe79003bbe61a97449c93066616be7aa71caa8ddc6c348d9e5c47bc1eacd725')
package_decklink() {
+ install=decklink.install
depends=('dkms' 'qt5-base' 'libpng')
mkdir -p "$pkgdir/usr/share/licenses/$pkgbase"
diff --git a/decklink.install b/decklink.install
new file mode 100644
index 000000000000..0fcf32773f72
--- /dev/null
+++ b/decklink.install
@@ -0,0 +1,9 @@
+post_upgrade() {
+ if (($(vercmp $2 11.5-2) < 0)); then
+ echo ':: In order to work the DesktopVideoHelper.service has to be started.'
+ fi
+}
+
+post_install() {
+ echo ':: In order to work the DesktopVideoHelper.service has to be started.'
+} \ No newline at end of file