New package: pyright-1.1.307
This commit is contained in:
parent
a5274af1de
commit
f201b29d26
1 changed files with 38 additions and 0 deletions
38
srcpkgs/pyright/template
Normal file
38
srcpkgs/pyright/template
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# Template file for 'pyright'
|
||||||
|
pkgname=pyright
|
||||||
|
version=1.1.307
|
||||||
|
revision=1
|
||||||
|
build_wrksrc="packages/pyright"
|
||||||
|
hostmakedepends="nodejs python3"
|
||||||
|
depends="nodejs"
|
||||||
|
short_desc="Static type checker and language server for Python"
|
||||||
|
maintainer="classabbyamp <void@placeviolette.net>"
|
||||||
|
license="MIT"
|
||||||
|
homepage="https://microsoft.github.io/pyright"
|
||||||
|
changelog="https://github.com/microsoft/pyright/releases"
|
||||||
|
distfiles="https://github.com/microsoft/pyright/archive/refs/tags/${version}.tar.gz"
|
||||||
|
checksum=434343c13bd470078c0184d7ac6383b5c0e43fabf79efaaef8e501d2a39933e3
|
||||||
|
|
||||||
|
do_configure() {
|
||||||
|
cd "$wrksrc"
|
||||||
|
npm ci
|
||||||
|
}
|
||||||
|
|
||||||
|
do_build() {
|
||||||
|
npm run build
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
local _targetdir="/usr/lib/pyright"
|
||||||
|
vmkdir "$_targetdir"
|
||||||
|
vinstall index.js 755 "$_targetdir"
|
||||||
|
vinstall langserver.index.js 755 "$_targetdir"
|
||||||
|
vinstall package.json 644 "$_targetdir"
|
||||||
|
vcopy dist "$_targetdir"
|
||||||
|
|
||||||
|
vmkdir /usr/bin
|
||||||
|
ln -s "$_targetdir/index.js" "${DESTDIR}/usr/bin/pyright"
|
||||||
|
ln -s "$_targetdir/langserver.index.js" "${DESTDIR}/usr/bin/pyright-langserver"
|
||||||
|
|
||||||
|
vlicense "$wrksrc/LICENSE.txt"
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue