mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-16 10:06:24 +02:00
28 lines
857 B
Plaintext
28 lines
857 B
Plaintext
maintainer="Willow Barraco <contact@willowbarraco.fr>"
|
|
pkgname=superhtml
|
|
pkgver=0.6.2
|
|
pkgrel=0
|
|
pkgdesc="HTML Validator, Formatter, LSP, and Templating Language Library"
|
|
url="https://github.com/kristoff-it/superhtml"
|
|
arch="aarch64 x86_64"
|
|
license="MIT"
|
|
makedepends="zig linux-headers"
|
|
# !check: manual test suite requiring git
|
|
# net: zig dependencies
|
|
options="!check net"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/kristoff-it/superhtml/archive/refs/tags/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
zig build --release=small
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 zig-out/bin/superhtml -t "$pkgdir"/usr/bin/
|
|
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
|
|
}
|
|
|
|
sha512sums="
|
|
b7c972fc6af85225cec3c44569b9937fd2f43f3bad6b16770fcd981f3dfe027dea132d33bc4d58eba827bcacd47654fc85d736b6a755b46dce823a0055f07799 superhtml-0.6.2.tar.gz
|
|
"
|