2024-05-02 00:58:27 +09:00
|
|
|
# Maintainer: qwjyh <urataw421 at gmail dot com>
|
2024-03-24 11:26:19 +09:00
|
|
|
# Contributor: clanger <virtualdemise at gmail dot com>
|
2023-09-11 19:43:57 +09:00
|
|
|
# Contributor: Aaron Coach <aur at ezpz dot cz>
|
2022-05-27 13:46:44 +09:00
|
|
|
|
2024-03-24 11:26:19 +09:00
|
|
|
_pkgname="powershell-editor-services"
|
|
|
|
pkgname="$_pkgname"
|
2025-01-15 16:59:46 +09:00
|
|
|
pkgver=4.1.0
|
2022-05-27 13:46:44 +09:00
|
|
|
pkgrel=1
|
2024-03-24 11:26:19 +09:00
|
|
|
pkgdesc='A common platform for PowerShell development support in any editor or application'
|
|
|
|
url="https://github.com/PowerShell/PowerShellEditorServices"
|
2022-05-27 13:46:44 +09:00
|
|
|
arch=('x86_64')
|
2024-05-02 00:54:56 +09:00
|
|
|
license=('MIT')
|
2024-03-24 11:26:19 +09:00
|
|
|
|
2022-05-27 13:46:44 +09:00
|
|
|
depends=('powershell')
|
|
|
|
|
2024-03-24 11:26:19 +09:00
|
|
|
install="$_pkgname.install"
|
|
|
|
|
|
|
|
_pkgsrc="PowerShellEditorServices-$pkgver"
|
|
|
|
_pkgext="zip"
|
2022-05-27 13:46:44 +09:00
|
|
|
|
2024-03-24 11:26:19 +09:00
|
|
|
noextract=("$_pkgsrc.$_pkgext")
|
2022-05-27 13:46:44 +09:00
|
|
|
|
2024-03-24 11:26:19 +09:00
|
|
|
source=(
|
|
|
|
"$_pkgsrc.$_pkgext"::"$url/releases/download/v$pkgver/PowerShellEditorServices.$_pkgext"
|
|
|
|
"LICENSE-$pkgver"::"$url/raw/v$pkgver/LICENSE"
|
|
|
|
)
|
2022-05-27 13:46:44 +09:00
|
|
|
|
2025-01-15 16:59:46 +09:00
|
|
|
sha256sums=('70dcd1570e95f1b980a2cc7e8050500875fc707f881e9f028c34d1f9b74da073'
|
2024-05-02 00:54:56 +09:00
|
|
|
'99bc3308d3b5f2018c5d7af9239548c6853a01f08db0a1d9247d16be647c5658')
|
2022-05-27 13:46:44 +09:00
|
|
|
|
|
|
|
package() {
|
2024-03-24 11:26:19 +09:00
|
|
|
mkdir -p "$pkgdir/opt/$_pkgname"
|
|
|
|
bsdtar -x -C "$pkgdir/opt/$_pkgname" -f "$srcdir/$_pkgsrc.$_pkgext"
|
2022-05-27 13:46:44 +09:00
|
|
|
|
2024-03-24 11:26:19 +09:00
|
|
|
install -Dm644 "LICENSE-$pkgver" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
2022-05-27 13:46:44 +09:00
|
|
|
}
|