# Maintainer: Buf # Contributor: Alexander Menzhinsky pkgname=buf pkgver=1.20.0 pkgrel=1 pkgdesc="A new way of working with Protocol Buffers" arch=("any") url="https://buf.build" license=('Apache') makedepends=('go') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bufbuild/buf/archive/v${pkgver}.tar.gz") build() { cd ${pkgname}-${pkgver} go build -trimpath -buildmode=pie -mod=readonly -modcacherw -buildvcs=false -o . ./cmd/{buf,protoc-gen-buf-lint,protoc-gen-buf-breaking} ./buf completion bash >completion.bash ./buf completion zsh >completion.zsh ./buf completion fish >completion.fish mkdir -p manpages ./buf manpages manpages } package() { install -Dm755 "${pkgname}-${pkgver}/buf" "${pkgdir}/usr/bin/buf" install -Dm755 "${pkgname}-${pkgver}/protoc-gen-buf-lint" "${pkgdir}/usr/bin/protoc-gen-buf-lint" install -Dm755 "${pkgname}-${pkgver}/protoc-gen-buf-breaking" "${pkgdir}/usr/bin/protoc-gen-buf-breaking" install -Dm644 "${pkgname}-${pkgver}/completion.bash" "${pkgdir}/etc/bash_completion.d/buf" install -Dm644 "${pkgname}-${pkgver}/completion.zsh" "${pkgdir}/usr/share/zsh/site-functions/_buf" install -Dm644 "${pkgname}-${pkgver}/completion.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/buf.fish" install -Dm644 "${pkgname}-${pkgver}/manpages/${pkgname}"* -t "${pkgdir}/usr/share/man/man1/" } sha256sums=('7aee2bfc54e022fea9c884fbc58c1c39e52586087e8da7bb0f6034d37b625f60')