initial commit (version 3.0.0)

This commit is contained in:
Carlos Galindo 2022-11-22 20:48:46 +01:00
commit b5c3ecfbf0
2 changed files with 40 additions and 0 deletions

17
.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = udsclient3
pkgdesc = UDS client required for polilabs, a remote desktop service for the UPV
pkgver = 3.0.0
pkgrel = 1
url = https://polilabs.upv.es/uds/page/client-download
arch = any
license = unknown
depends = python>=3.6
depends = python-paramiko
depends = python-requests
depends = python-six
depends = python-pyqt5
depends = python-crypto
source = udsclient3-3.0.0.tar.gz:https://polilabs.upv.es/uds/res/clients/udsclient3-3.0.0.tar.gz
sha256sums = 1850fd2d1d0e2e93e60e615e0cc3fbbd3df9afe03b0fc7c6e60cc3d4de197ace
pkgname = udsclient3

23
PKGBUILD Normal file
View File

@ -0,0 +1,23 @@
# Maintainer: Carlos Galindo <cargaji@vrain.upv.es>
pkgname=udsclient3
pkgver=3.0.0
pkgrel=1
pkgdesc="UDS client required for polilabs, a remote desktop service for the UPV"
arch=('any')
url="https://polilabs.upv.es/uds/page/client-download"
license=('unknown')
depends=('python>=3.6'
'python-paramiko'
'python-requests'
'python-six'
'python-pyqt5'
'python-crypto')
source=("$pkgname-$pkgver.tar.gz:https://polilabs.upv.es/uds/res/clients/$pkgname-$pkgver.tar.gz")
sha256sums=('1850fd2d1d0e2e93e60e615e0cc3fbbd3df9afe03b0fc7c6e60cc3d4de197ace')
package() {
mkdir -p "${pkgdir}/usr/lib/"
cp -r usr/lib/UDSClient "${pkgdir}/usr/lib/UDSClient"
install -D -t "${pkgdir}/usr/share/applications" usr/share/applications/UDSClient.desktop
}