Initial commit

This commit is contained in:
Lukas 2025-11-21 13:54:52 +01:00
commit 8e0f1133ec
No known key found for this signature in database
4 changed files with 40 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = wasm-language-tools-bin
pkgdesc = Language server and other tools for WebAssembly
pkgver = 0.7.0
pkgrel = 1
url = https://github.com/g-plane/wasm-language-tools
arch = x86_64
license = MIT
provides = wasm-language-tools
conflicts = wasm-language-tools
source = https://github.com/g-plane/wasm-language-tools/releases/download/v0.7.0/wat_server-x86_64-linux.zip
b2sums = 29aa8389202c30fb5b48b6bea2a0584b2952c523d37f57016c0f80efb8b69b39926b83ed6a8020080046b3ccde85ec2b84abd6ab4e30839bb43e801cba7eda61
pkgname = wasm-language-tools-bin

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*
!.gitignore
!PKGBUILD
!.SRCINFO
!.nvchecker.toml

4
.nvchecker.toml Normal file
View file

@ -0,0 +1,4 @@
[wasm-language-tools-bin]
source = "git"
git = "https://github.com/g-plane/wasm-language-tools.git"
prefix = "v"

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: Lukas Hertel <dev@lukas-hertel.de>
# Maintainer: Quentin Michaud <mh4ckt3mh4ckt1c4s@archlinux.org>
pkgname=wasm-language-tools-bin
pkgver=0.7.0
pkgrel=1
pkgdesc="Language server and other tools for WebAssembly"
arch=('x86_64')
url="https://github.com/g-plane/wasm-language-tools"
license=('MIT')
source=(https://github.com/g-plane/wasm-language-tools/releases/download/v${pkgver}/wat_server-x86_64-linux.zip)
b2sums=('29aa8389202c30fb5b48b6bea2a0584b2952c523d37f57016c0f80efb8b69b39926b83ed6a8020080046b3ccde85ec2b84abd6ab4e30839bb43e801cba7eda61')
provides=('wasm-language-tools')
conflicts=('wasm-language-tools')
package() {
install -Dm755 "wat_server" "${pkgdir}/usr/bin/wat_server"
}