mirror of
https://github.com/j1g5awi/krunner-vscode.git
synced 2024-11-22 07:49:29 +00:00
Initital commit
This commit is contained in:
commit
779e299f53
2 changed files with 56 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
pkgbase = plasma5-runners-vscode-git
|
||||||
|
pkgdesc = KRunner plugin for quickly opening recent VSCode workspaces
|
||||||
|
pkgver = r5.7c6bc0c
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/j1g5awi/krunner-vscode
|
||||||
|
arch = any
|
||||||
|
license = GPL3
|
||||||
|
makedepends = git
|
||||||
|
makedepends = python-poetry
|
||||||
|
depends = krunner
|
||||||
|
depends = python
|
||||||
|
depends = python-gobject
|
||||||
|
depends = dbus-python
|
||||||
|
source = plasma5-runners-vscode-git::git+https://github.com/j1g5awi/krunner-vscode
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = plasma5-runners-vscode-git
|
39
PKGBUILD
Normal file
39
PKGBUILD
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
# Maintainer: Jigsaw <j1g5aw@foxmail.com>
|
||||||
|
|
||||||
|
pkgname=plasma5-runners-vscode-git
|
||||||
|
pkgver=r5.7c6bc0c
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="KRunner plugin for quickly opening recent VSCode workspaces"
|
||||||
|
arch=('any')
|
||||||
|
url="https://github.com/j1g5awi/krunner-vscode"
|
||||||
|
license=('GPL3')
|
||||||
|
depends=('krunner' 'python' 'python-gobject' 'dbus-python')
|
||||||
|
makedepends=('git' 'python-poetry')
|
||||||
|
source=("plasma5-runners-vscode-git::git+https://github.com/j1g5awi/krunner-vscode")
|
||||||
|
md5sums=('SKIP')
|
||||||
|
build(){
|
||||||
|
cd "$pkgname"
|
||||||
|
pip install .
|
||||||
|
}
|
||||||
|
package() {
|
||||||
|
cd "$pkgname"
|
||||||
|
mkdir -p "${pkgdir}/usr/share/kservices5/"
|
||||||
|
mkdir -p "${pkgdir}/usr/share/dbus-1/services/"
|
||||||
|
install ./package/plasma-runner-vscode.desktop "${pkgdir}/usr/share/kservices5/"
|
||||||
|
install ./package/com.github.j1g5awi.vscode.service "${pkgdir}/usr/share/dbus-1/services/"
|
||||||
|
}
|
||||||
|
pkgver() {
|
||||||
|
cd "$pkgname"
|
||||||
|
( set -o pipefail
|
||||||
|
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
kquitapp5 krunner
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
kquitapp5 krunner
|
||||||
|
}
|
Loading…
Reference in a new issue