Compare commits

...

10 commits

Author SHA1 Message Date
f15970e8dc update maintainer 2024-05-02 00:58:27 +09:00
931272e111 update to v3.20.0 and fix license 2024-05-02 00:54:56 +09:00
xiota
aed32618a9 3.18.1 2024-03-24 02:26:19 +00:00
clanger
814b920774 3.13.0 2023-10-25 18:34:42 +01:00
clanger
99cb12c98b 3.11.0 2023-10-07 21:50:03 +01:00
clanger
c3fb722c3a 3.10.0 2023-09-11 11:43:57 +01:00
potatoattack
0c00949110 3.8.1 2023-02-28 08:50:51 +11:00
potatoattack
8dfc738381 3.8.0 2023-02-06 08:53:34 +11:00
potatoattack
2f69a1871b 3.7.3 2023-01-05 18:55:19 +11:00
potatoattack
3211d33a95 3.7.2 2022-12-26 13:10:19 +11:00
2 changed files with 30 additions and 23 deletions

View file

@ -1,15 +1,16 @@
pkgbase = powershell-editor-services
pkgdesc = A common platform for PowerShell development support in any editor or application!
pkgver = 3.6.3
pkgdesc = A common platform for PowerShell development support in any editor or application
pkgver = 3.20.0
pkgrel = 1
url = https://github.com/PowerShell/PowerShellEditorServices
install = powershell-editor-services.install
arch = x86_64
license = MIT
depends = powershell
noextract = PowerShellEditorServices-3.6.3.zip
source = PowerShellEditorServices-3.6.3.zip::https://github.com/PowerShell/PowerShellEditorServices/releases/download/v3.6.3/PowerShellEditorServices.zip
source = LICENSE-3.6.3::https://raw.githubusercontent.com/PowerShell/PowerShellEditorServices/v3.6.3/LICENSE
sha256sums = 2105454179326840f4bf129116ae0bb26c3e102f7b4e40ab53d0a5fa270d056f
noextract = PowerShellEditorServices-3.20.0.zip
source = PowerShellEditorServices-3.20.0.zip::https://github.com/PowerShell/PowerShellEditorServices/releases/download/v3.20.0/PowerShellEditorServices.zip
source = LICENSE-3.20.0::https://github.com/PowerShell/PowerShellEditorServices/raw/v3.20.0/LICENSE
sha256sums = 52330b51d9df2b833784b7eb932767178dbef35407ad46a7c3389f9157df973f
sha256sums = 99bc3308d3b5f2018c5d7af9239548c6853a01f08db0a1d9247d16be647c5658
pkgname = powershell-editor-services

View file

@ -1,30 +1,36 @@
# Maintainer: Aaron Coach <aur at ezpz dot cz>
# Maintainer: qwjyh <urataw421 at gmail dot com>
# Contributor: clanger <virtualdemise at gmail dot com>
# Contributor: Aaron Coach <aur at ezpz dot cz>
pkgname=powershell-editor-services
pkgver=3.6.3
_pkgname="powershell-editor-services"
pkgname="$_pkgname"
pkgver=3.20.0
pkgrel=1
pkgdesc='A common platform for PowerShell development support in any editor or application!'
url='https://github.com/PowerShell/PowerShellEditorServices'
pkgdesc='A common platform for PowerShell development support in any editor or application'
url="https://github.com/PowerShell/PowerShellEditorServices"
arch=('x86_64')
licence=('MIT')
license=('MIT')
depends=('powershell')
install="$pkgname".install
install="$_pkgname.install"
source=("PowerShellEditorServices-$pkgver.zip::https://github.com/PowerShell/PowerShellEditorServices/releases/download/v$pkgver/PowerShellEditorServices.zip"
"LICENSE-$pkgver::https://raw.githubusercontent.com/PowerShell/PowerShellEditorServices/v$pkgver/LICENSE")
_pkgsrc="PowerShellEditorServices-$pkgver"
_pkgext="zip"
noextract=("PowerShellEditorServices-$pkgver.zip")
noextract=("$_pkgsrc.$_pkgext")
sha256sums=('2105454179326840f4bf129116ae0bb26c3e102f7b4e40ab53d0a5fa270d056f'
source=(
"$_pkgsrc.$_pkgext"::"$url/releases/download/v$pkgver/PowerShellEditorServices.$_pkgext"
"LICENSE-$pkgver"::"$url/raw/v$pkgver/LICENSE"
)
sha256sums=('52330b51d9df2b833784b7eb932767178dbef35407ad46a7c3389f9157df973f'
'99bc3308d3b5f2018c5d7af9239548c6853a01f08db0a1d9247d16be647c5658')
package() {
mkdir -p "$pkgdir"/opt/powershell-editor-services
bsdtar -x -C "$pkgdir"/opt/powershell-editor-services \
-f "$srcdir"/PowerShellEditorServices-$pkgver.zip
mkdir -p "$pkgdir/opt/$_pkgname"
bsdtar -x -C "$pkgdir/opt/$_pkgname" -f "$srcdir/$_pkgsrc.$_pkgext"
install -Dm0644 LICENSE-"$pkgver" \
"$pkgdir"/usr/share/licences/powershell-editor-services/LICENSE
install -Dm644 "LICENSE-$pkgver" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}