From 18d5fb58887b5467cb717894d043ff82542cfc1a Mon Sep 17 00:00:00 2001 From: Lilac Date: Sat, 23 Mar 2024 14:53:21 +0000 Subject: [PATCH] vdhcoapp-bin: auto updated to 2.0.19-1 --- repo/vdhcoapp-bin/PKGBUILD | 48 ++++++++++++++++++++ repo/vdhcoapp-bin/vdhcoapp-install.hook | 10 ++++ repo/vdhcoapp-bin/vdhcoapp-remove.hook | 9 ++++ repo/vdhcoapp-bin/vdhcoapp-user-install.hook | 10 ++++ repo/vdhcoapp-bin/vdhcoapp-user-remove.hook | 9 ++++ 5 files changed, 86 insertions(+) create mode 100644 repo/vdhcoapp-bin/PKGBUILD create mode 100644 repo/vdhcoapp-bin/vdhcoapp-install.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-remove.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-user-install.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-user-remove.hook diff --git a/repo/vdhcoapp-bin/PKGBUILD b/repo/vdhcoapp-bin/PKGBUILD new file mode 100644 index 0000000..b686bb8 --- /dev/null +++ b/repo/vdhcoapp-bin/PKGBUILD @@ -0,0 +1,48 @@ +# Maintainer: Paragoumba +# Contributor: Mario Ray MahardhikZza +# Contributor: James Cuzella + +_package=net.downloadhelper.coapp +pkgname=vdhcoapp-bin +pkgver=2.0.19 +pkgrel=1 +pkgdesc="Companion application for Video DownloadHelper browser add-on, precompiled binary version" +provides=("vdhcoapp=${pkgver}") +conflicts=('vdhcoapp') +arch=('x86_64') +url="https://github.com/aclap-dev/vdhcoapp" +license=('GPL2') +depends=('ffmpeg' 'orc') +makedepends=() +options=('!strip') # IMPORTANT! DO NOT REMOVE THIS, OTHERWISE THE BINARY WILL BE BROKEN! +source=(vdhcoapp-$pkgver-linux-$arch.deb::https://github.com/aclap-dev/vdhcoapp/releases/download/v${pkgver}/vdhcoapp-linux-$arch.deb + vdhcoapp-install.hook + vdhcoapp-remove.hook + vdhcoapp-user-install.hook + vdhcoapp-user-remove.hook) +sha256sums=('496d341eef326f3fb6f0ddf825b309d6e18a4ddb7f1bec7fe74d9282ae94dfc4' + 'a2b56e6ae3f7f8933e20762baa90e69f63f0802b2e6d213b51e0bc68843e5d27' + '3287859986d67e15e269965676bf9c75d1e853ea0ec97695811072fb8f10a7a8' + 'a08c02d934709cdea4392fce155bec0b33147e386ed154bed959c5b78788ea83' + 'f7406ae5ba7fb6602426ef97540f86e057a7fd6d01a917e5af3638f1d64b2ce9') + +prepare() { + rm control.tar.xz + rm debian-binary + mkdir -p "${srcdir}/${pkgname}" + tar xf data.tar.xz -C "${pkgname}" +} + +package() { + cp -Rfp "${srcdir}/${pkgname}/"* "${pkgdir}/" + mkdir -p "${pkgdir}/usr/bin" + mkdir -p "${pkgdir}/usr/share/libalpm/hooks" + mkdir -p "${pkgdir}/opt/${_package}/converter/build/linux/64/" + ln -s /usr/bin/ffmpeg "${pkgdir}/opt/${_package}/converter/build/linux/64/ffmpeg" + ln -s /usr/bin/ffprobe "${pkgdir}/opt/${_package}/converter/build/linux/64/ffprobe" + ln -s /usr/bin/ffplay "${pkgdir}/opt/${_package}/converter/build/linux/64/ffplay" + ln -s "/opt/vdhcoapp/vdhcoapp" "${pkgdir}/usr/bin/vdhcoapp" + + # Install Hooks + cp -fpL "${srcdir}/"*.hook "${pkgdir}/usr/share/libalpm/hooks/" +} diff --git a/repo/vdhcoapp-bin/vdhcoapp-install.hook b/repo/vdhcoapp-bin/vdhcoapp-install.hook new file mode 100644 index 0000000..b608634 --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-install.hook @@ -0,0 +1,10 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Installing JSON configuration file ... +When = PostTransaction +Exec = /usr/bin/vdhcoapp install --system diff --git a/repo/vdhcoapp-bin/vdhcoapp-remove.hook b/repo/vdhcoapp-bin/vdhcoapp-remove.hook new file mode 100644 index 0000000..ddf2690 --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-remove.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Remove +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Uninstalling JSON configuration file ... +When = PreTransaction +Exec = /usr/bin/vdhcoapp uninstall --system diff --git a/repo/vdhcoapp-bin/vdhcoapp-user-install.hook b/repo/vdhcoapp-bin/vdhcoapp-user-install.hook new file mode 100644 index 0000000..2afad2e --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-user-install.hook @@ -0,0 +1,10 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Installing JSON configuration file for current user ... +When = PostTransaction +Exec = /bin/sh -c 'sudo -u "${SUDO_USER:-$(id -u -n 1000 )}" /usr/bin/vdhcoapp install --user' diff --git a/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook b/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook new file mode 100644 index 0000000..c0f15dd --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Remove +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Uninstalling JSON configuration file for current user ... +When = PreTransaction +Exec = /bin/sh -c 'sudo -u "${SUDO_USER:-$(id -u -n 1000 )}" /usr/bin/vdhcoapp uninstall --user'