22 lines
735 B
Bash
22 lines
735 B
Bash
# Maintainer: qwjyh <urataw421@gmail.com>
|
|
|
|
pkgname=vhdl-ls-bin
|
|
pkgver=0.82.0
|
|
pkgrel=1
|
|
depends=()
|
|
makedepends=()
|
|
arch=('x86_64')
|
|
pkgdesc="A fast VHDL language server"
|
|
url="https://github.com/VHDL-LS/rust_hdl"
|
|
source=("$pkgname-$pkgver.zip::https://github.com/VHDL-LS/rust_hdl/releases/download/v$pkgver/vhdl_ls-x86_64-unknown-linux-gnu.zip")
|
|
license=('MPL-2.0')
|
|
sha512sums=('16a3b42778bdcfffaad22d41bdfa1212cfe510c751ccd55991cb80df2ea0918c664de3f0eb0b0f63d1823e67e737e11fd441a283e31b06990024b95091fa53b7')
|
|
|
|
package() {
|
|
cd "vhdl_ls-x86_64-unknown-linux-gnu" || exit
|
|
install -Dm0755 -t "$pkgdir/usr/bin/" "bin/vhdl_ls"
|
|
|
|
find "vhdl_libraries" -type f -exec install -Dm0755 -t "$pkgdir/usr/lib/rust_hdl/{}" {} \;
|
|
}
|
|
|
|
# vim: ts=2 sw=2:
|