vdhcoapp-bin: auto updated to 2.0.19-1
This commit is contained in:
parent
de2139bf9a
commit
18d5fb5888
48
repo/vdhcoapp-bin/PKGBUILD
Normal file
48
repo/vdhcoapp-bin/PKGBUILD
Normal file
|
@ -0,0 +1,48 @@
|
|||
# Maintainer: Paragoumba <aur@paragoumba.fr>
|
||||
# Contributor: Mario Ray MahardhikZza <leledumbo_cool@yahoo.co.id>
|
||||
# Contributor: James Cuzella <james.cuzella@lyraphase.com>
|
||||
|
||||
_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/"
|
||||
}
|
10
repo/vdhcoapp-bin/vdhcoapp-install.hook
Normal file
10
repo/vdhcoapp-bin/vdhcoapp-install.hook
Normal file
|
@ -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
|
9
repo/vdhcoapp-bin/vdhcoapp-remove.hook
Normal file
9
repo/vdhcoapp-bin/vdhcoapp-remove.hook
Normal file
|
@ -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
|
10
repo/vdhcoapp-bin/vdhcoapp-user-install.hook
Normal file
10
repo/vdhcoapp-bin/vdhcoapp-user-install.hook
Normal file
|
@ -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'
|
9
repo/vdhcoapp-bin/vdhcoapp-user-remove.hook
Normal file
9
repo/vdhcoapp-bin/vdhcoapp-user-remove.hook
Normal file
|
@ -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'
|
Loading…
Reference in a new issue