mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
26 lines
825 B
Text
26 lines
825 B
Text
# Contributor: Clayton Craft <clayton@craftyguy.net>
|
|
# Maintainer: Clayton Craft <clayton@craftyguy.net>
|
|
pkgname=snippets-ls
|
|
pkgver=0.0.4_git20240617
|
|
pkgrel=3
|
|
pkgdesc="simple language server for inserting custom snippets into text editors"
|
|
url="https://github.com/quantonganh/snippets-ls"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="go"
|
|
_commit="063ba0f72f6d80829e17c6e5de6c9ae0aa05a841"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/quantonganh/snippets-ls/archive/$_commit.tar.gz"
|
|
options="!check" # no tests
|
|
builddir="$srcdir/$pkgname-$_commit"
|
|
|
|
build() {
|
|
go build ./...
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 snippets-ls -t "$pkgdir"/usr/bin
|
|
}
|
|
|
|
sha512sums="
|
|
7e9a30012b373b1b7e2b1fab1736b2816fd090ec69546282ce086301db72989394cfbcecb796db6a2fbc1fb2d0900f1cfd9a128634eb9477e03891b5e7412e7c snippets-ls-0.0.4_git20240617.tar.gz
|
|
"
|