-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81e33dd
commit b6fda67
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
abinfo "Installing Bash completion ..." | ||
install -Dvm644 $SRCDIR/completions/mise.bash \ | ||
$PKGDIR/usr/share/bash-completion/completions/mise | ||
|
||
abinfo "Installing Fish completion .." | ||
install -Dvm644 $SRCDIR/completions/mise.fish \ | ||
$PKGDIR/usr/share/fish/vendor_completions.d/mise.fish | ||
|
||
abinfo "Installing Zsh completion ..." | ||
install -Dvm644 $SRCDIR/completions/_mise \ | ||
$PKGDIR/usr/share/zsh/site-functions/_mise | ||
|
||
abinfo "Installing man page ..." | ||
install -Dvm644 $SRCDIR/man/man1/mise.1 \ | ||
$PKGDIR/usr/share/man/man1/mise.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
PKGNAME=mise | ||
PKGDES="Polyglot runtime and development tool version manager" | ||
PKGSEC=devel | ||
PKGDEP="bzip2 gcc-runtime openssl zlib" | ||
BUILDDEP="rustc llvm" | ||
|
||
USECLANG=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
VER=2025.1.15 | ||
SRCS="git::commit=v$VER::https://github.com/jdx/mise.git" | ||
CHKSUMS="SKIP" | ||
CHKUPDATE="anitya::id=376460" |