Compare commits

...

2 commits

Author SHA1 Message Date
Kainoa Kanter
ea2f3d6b40
fix: copy vendor files 2025-12-09 09:20:20 -08:00
Kainoa Kanter
ca601c05cc
up 2025-12-09 09:13:07 -08:00
2 changed files with 10 additions and 5 deletions

View file

@ -1,7 +1,7 @@
pkgbase = sshpilot-git
pkgdesc = SSH connection manager with integrated terminal, tunneling, tabbed interface and scp upload support.
pkgver = r2381.g4b82496
pkgrel = 1
pkgver = r2486.g58ec429
pkgrel = 2
url = https://github.com/mfat/sshpilot
arch = any
license = GPL-3.0-only
@ -17,6 +17,9 @@ pkgbase = sshpilot-git
depends = sshpass
depends = libsecret
depends = gtksourceview5
depends = webkitgtk-6.0
depends = python-flask
depends = python-flask-socketio
provides = sshpilot
conflicts = sshpilot
source = git+https://github.com/mfat/sshpilot.git

View file

@ -4,12 +4,12 @@
_pkgname=sshpilot
pkgname="$_pkgname-git"
pkgver=r2381.g4b82496
pkgrel=1
pkgver=r2486.g58ec429
pkgrel=2
pkgdesc='SSH connection manager with integrated terminal, tunneling, tabbed interface and scp upload support.'
url='https://github.com/mfat/sshpilot'
license=('GPL-3.0-only')
depends=('python' 'python-gobject' 'python-cairo' 'python-paramiko' 'python-cryptography' 'python-matplotlib' 'libadwaita' 'vte4' 'sshpass' 'libsecret' 'gtksourceview5')
depends=('python' 'python-gobject' 'python-cairo' 'python-paramiko' 'python-cryptography' 'python-matplotlib' 'libadwaita' 'vte4' 'sshpass' 'libsecret' 'gtksourceview5' 'webkitgtk-6.0' 'python-flask' 'python-flask-socketio')
makedepends=('git')
arch=('any')
sha256sums=('SKIP')
@ -33,7 +33,9 @@ package() {
install -d "${pkgdir}${site_packages}/sshpilot"
cp -a 'sshpilot'/*.py "${pkgdir}${site_packages}/sshpilot/"
install -d "${pkgdir}${site_packages}/sshpilot/resources" "${pkgdir}${site_packages}/sshpilot/ui"
install -d "${pkgdir}${site_packages}/sshpilot/vendor" "${pkgdir}${site_packages}/sshpilot/vendor"
cp -a 'sshpilot/resources'/* "${pkgdir}${site_packages}/sshpilot/resources/"
cp -a 'sshpilot/vendor'/* "${pkgdir}${site_packages}/sshpilot/vendor/"
# Install desktop file and icon
install -D -m 644 'io.github.mfat.sshpilot.desktop' -t "${pkgdir}/usr/share/applications"
install -D -m 644 'sshpilot/resources/sshpilot.svg' "${pkgdir}/usr/share/pixmaps/io.github.mfat.sshpilot.svg"