Update AUR package to

This commit is contained in:
Kamack38 2022-04-04 15:34:13 +00:00
commit 589b3f10d2
2 changed files with 39 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = oh-my-posh-bin
pkgdesc = A prompt theme engine for any shell.
pkgver = 7.57.3
pkgrel = 1
url = https://github.com/JanDeDobbeleer/oh-my-posh
arch = x86_64
license = MIT
makedepends = curl
provides = oh-my-posh
conflicts = oh-my-posh
source = https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v7.57.3/posh-linux-amd64
sha256sums = c5070cd3414c094647a04de8c95843b3933200ff9470962db5c6bb8c8a1d7b07
pkgname = oh-my-posh-bin

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: Kamack38 <kamack38.biznes@gmail.com>
_pkgname='oh-my-posh'
pkgname="${_pkgname}-bin"
pkgver=7.57.3
pkgrel=1
pkgdesc="A prompt theme engine for any shell."
arch=('x86_64')
url="https://github.com/JanDeDobbeleer/oh-my-posh"
license=('MIT')
makedepends=('curl')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/posh-linux-amd64")
sha256sums=('c5070cd3414c094647a04de8c95843b3933200ff9470962db5c6bb8c8a1d7b07')
pkgver() {
curl --silent "https://api.github.com/repos/JanDeDobbeleer/oh-my-posh/releases/latest" | # Get latest release from GitHub api
grep '"tag_name":' | # Get tag line
sed -E 's/.*"([^"]+)".*/\1/' |
sed 's/v//'
}
package() {
install -Dm 755 posh-linux-amd64 "${pkgdir}/usr/bin/oh-my-posh"
}