# Maintainer: Hao Long <aur@esd.cc> pkgname=terminal-to-html pkgver=3.16.0 pkgrel=1 pkgdesc="Converts arbitrary shell output (with ANSI) into beautifully rendered HTML" arch=("x86_64" "i686") url="https://github.com/buildkite/terminal-to-html" license=('MIT') provides=('terminal-to-html') conflicts=('terminal-to-html') depends=('glibc') makedepends=('go') source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz") b2sums=('aa6b4c0601df4f8e6f1e897accd143a8a624accdac71e02a6af7f251b594391dd7f6f6ef94df8bdfd5b08215d794648143642d9f7525836840c3bf0cfec0da42') build() { cd ${pkgname}-${pkgver} export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CFLAGS="${CFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" go build ./cmd/${pkgname} } package() { cd ${pkgname}-${pkgver} install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname" }