mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 06:38:44 +01:00
Initial commit
This commit is contained in:
commit
8e0f1133ec
4 changed files with 40 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal 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
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
*
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
!.nvchecker.toml
|
||||
4
.nvchecker.toml
Normal file
4
.nvchecker.toml
Normal 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
18
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue