blob: 9dd6266672c55844961adc84ea848b3d0b4173a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Template file for 'mise'
pkgname=mise
version=2026.3.4
revision=1
build_style=cargo
hostmakedepends="pkg-config"
makedepends="openssl-devel libzstd-devel bzip2-devel"
short_desc="Polyglot runtime manager (asdf rust clone)"
maintainer="Daniel Lewan <daniel@teddydd.me>"
license="MIT"
homepage="https://github.com/jdx/mise"
changelog="https://github.com/jdx/mise/releases"
distfiles="https://github.com/jdx/mise/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
checksum=7ec15b68e0de9e4286abd4213562c7ba82584c6b75c77227bf70ef420bd94c75
case "$XBPS_TARGET_MACHINE" in
i686*) broken="runs out of memory" ;;
esac
post_install() {
vlicense LICENSE
vman man/man1/mise.1
vdoc README.md
vcompletion completions/mise.bash bash mise
vcompletion completions/mise.fish fish mise
vcompletion completions/_mise zsh mise
}
rtx_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" (transitional dummy package)"
metapackage=yes
}
|