#!/bin/sh
PKGNAME=powershell
SUPPORTEDARCHES="x86_64"
VERSION="$2"
DESCRIPTION="Microsoft PowerShell from the official site"
URL="https://github.com/PowerShell/PowerShell"
. $(dirname $0)/common.sh
[ "$VERSION" = "*" ] && VERSION="[0-9]*" || VERSION="$VERSION-1"
reponame=$(epm print info --repo-name)
vendor=$(epm print info -s)
version=$(epm print info --base-version)
# Strict supported list
case $(epm print info -e) in
Ubuntu/*)
BASEURL="https://packages.microsoft.com/ubuntu/$version/prod/pool/main/p/powershell/"
file="powershell_$VERSION.deb_amd64.deb"
;;
*)
BASEURL="https://github.com/PowerShell/PowerShell/releases"
file="powershell-$VERSION.rh.x86_64.rpm"
;;
esac
PKGURL=$(eget --list --latest $BASEURL "$file")
install_pkgurl
-
Vitaly Lipatov authored586f32e9