Skip to content

Commit

Permalink
Add tinymist-bin
Browse files Browse the repository at this point in the history
  • Loading branch information
AOx0 committed Apr 13, 2024
1 parent 20f3c89 commit 7d5fbd8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rm ./gpg_key
gpg --list-keys --keyid-format=long
gpg --list-secret-keys --keyid-format=long

for i in typst-git helix-git gitkraken-wayland; do
for i in tinymist-bin typst-git helix-git gitkraken-wayland; do
status=13
git submodule update --init $i
cd $i
Expand Down
6 changes: 6 additions & 0 deletions tinymist-bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.pkg.tar.zst
*.scm
*.tar.gz
pkg/
src/
tinymist*
19 changes: 19 additions & 0 deletions tinymist-bin/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Maintainer: Alejandro Osornio <[email protected]>
pkgname=tinymist-bin
_pkgname=tinymist
pkgver=0.11.3
pkgrel=1
pkgdesc="An integrated language service for Typst"
arch=('x86_64')
url="https://github.com/Myriad-Dreamin/tinymist"
license=('Apache')
makedepends=(cargo)
options=('strip')
source=("https://github.com/Myriad-Dreamin/tinymist/releases/download/v$pkgver/$_pkgname-linux-x64")
sha256sums=('dd5f40c9854d1d5e2ee75a8c8b178676a9c976515f7585737b4ed7f55b0b3a55')

package() {
cd "$srcdir/"
mv "$_pkgname-linux-x64" "$_pkgname"
install -Dm0755 -t "$pkgdir/usr/bin/" "$_pkgname"
}

0 comments on commit 7d5fbd8

Please sign in to comment.