vdhcoapp-bin: auto updated to 2.0.19-2

This commit is contained in:
Lilac 2024-06-01 11:01:24 +00:00
parent 7afb60fed7
commit 3ba4efd2ca
6 changed files with 43 additions and 72 deletions

View file

@ -2,47 +2,42 @@
# Contributor: Mario Ray MahardhikZza <leledumbo_cool@yahoo.co.id> # Contributor: Mario Ray MahardhikZza <leledumbo_cool@yahoo.co.id>
# Contributor: James Cuzella <james.cuzella@lyraphase.com> # Contributor: James Cuzella <james.cuzella@lyraphase.com>
_package=net.downloadhelper.coapp _pkgname=vdhcoapp
pkgname=vdhcoapp-bin pkgname="$_pkgname-bin"
pkgver=2.0.19 pkgver=2.0.19
pkgrel=1 pkgrel=2
pkgdesc="Companion application for Video DownloadHelper browser add-on, precompiled binary version"
provides=("vdhcoapp=${pkgver}")
conflicts=('vdhcoapp')
arch=('x86_64') arch=('x86_64')
pkgdesc="Companion application for Video DownloadHelper browser add-on (binary version)"
url="https://github.com/aclap-dev/vdhcoapp" url="https://github.com/aclap-dev/vdhcoapp"
license=('GPL2') license=('GPL-2.0-or-later')
depends=('ffmpeg' 'orc')
makedepends=() options=('emptydirs' '!strip') # IMPORTANT! DO NOT REMOVE THIS, OTHERWISE THE BINARY WILL BE BROKEN!
options=('!strip') # IMPORTANT! DO NOT REMOVE THIS, OTHERWISE THE BINARY WILL BE BROKEN! install="$_pkgname.install"
source=(vdhcoapp-$pkgver-linux-$arch.deb::https://github.com/aclap-dev/vdhcoapp/releases/download/v${pkgver}/vdhcoapp-linux-$arch.deb
vdhcoapp-install.hook provides=("vdhcoapp=$pkgver")
vdhcoapp-remove.hook conflicts=('vdhcoapp')
vdhcoapp-user-install.hook
vdhcoapp-user-remove.hook) source=("$_pkgname-$pkgver-linux-$arch.deb::https://github.com/aclap-dev/$_pkgname/releases/download/v${pkgver}/$_pkgname-linux-$arch.deb")
sha256sums=('496d341eef326f3fb6f0ddf825b309d6e18a4ddb7f1bec7fe74d9282ae94dfc4'
'a2b56e6ae3f7f8933e20762baa90e69f63f0802b2e6d213b51e0bc68843e5d27' sha256sums=('496d341eef326f3fb6f0ddf825b309d6e18a4ddb7f1bec7fe74d9282ae94dfc4')
'3287859986d67e15e269965676bf9c75d1e853ea0ec97695811072fb8f10a7a8'
'a08c02d934709cdea4392fce155bec0b33147e386ed154bed959c5b78788ea83'
'f7406ae5ba7fb6602426ef97540f86e057a7fd6d01a917e5af3638f1d64b2ce9')
prepare() { prepare() {
rm control.tar.xz mkdir -p "$srcdir/$pkgname"
rm debian-binary
mkdir -p "${srcdir}/${pkgname}"
tar xf data.tar.xz -C "${pkgname}"
} }
package() { package() {
cp -Rfp "${srcdir}/${pkgname}/"* "${pkgdir}/" depends+=('ffmpeg')
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 tar xf data.tar.xz -C "$pkgdir" "./opt/$_pkgname/filepicker" "./opt/$_pkgname/$_pkgname"
cp -fpL "${srcdir}/"*.hook "${pkgdir}/usr/share/libalpm/hooks/"
ln -sf /usr/bin/ffmpeg "${pkgdir}/opt/$_pkgname/ffmpeg"
ln -sf /usr/bin/ffprobe "${pkgdir}/opt/$_pkgname/ffprobe"
install -dm755 "$pkgdir/usr/bin"
ln -sf "/opt/vdhcoapp/vdhcoapp" "${pkgdir}/usr/bin/vdhcoapp"
install -dm755 "$pkgdir/usr/lib/mozilla/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/opt/chrome/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/chromium/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/opt/edge/native-messaging-hosts/"
} }

View file

@ -1,10 +0,0 @@
[Trigger]
Operation = Install
Operation = Upgrade
Type = Package
Target = vdhcoapp-bin
[Action]
Description = Installing JSON configuration file ...
When = PostTransaction
Exec = /usr/bin/vdhcoapp install --system

View file

@ -1,9 +0,0 @@
[Trigger]
Operation = Remove
Type = Package
Target = vdhcoapp-bin
[Action]
Description = Uninstalling JSON configuration file ...
When = PreTransaction
Exec = /usr/bin/vdhcoapp uninstall --system

View file

@ -1,10 +0,0 @@
[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'

View file

@ -1,9 +0,0 @@
[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'

View file

@ -0,0 +1,14 @@
post_install() {
echo "vdhcoapp: system install"
vdhcoapp install --system
}
post_upgrade() {
echo "vdhcoapp: system install"
vdhcoapp install --system
}
pre_remove() {
echo "vdhcoapp: system uninstall"
vdhcoapp uninstall --system
}