mirror of
https://github.com/luzifer-aur/gofumpt.git
synced 2024-11-12 12:52:42 +00:00
23 lines
731 B
Bash
23 lines
731 B
Bash
# Maintainer: Knut Ahlers <knut at ahlers dot me>
|
|
|
|
pkgname=gofumpt
|
|
pkgver=0.2.1
|
|
pkgrel=1
|
|
pkgdesc="A stricter gofmt"
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/mvdan/gofumpt"
|
|
license=('custom')
|
|
makedepends=('go')
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mvdan/gofumpt/archive/v${pkgver}.tar.gz")
|
|
sha512sums=('5cf3c3bdc432971edc71edac31f355c91f417c3358e17f7cae62f2a4808a7145e5b12f47977680b8692e14cc28fc62da423a0d7c4835c5a662c2170acd377dea')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
GO111MODULE=on go build -mod=readonly
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
install -Dm755 -t "${pkgdir}/usr/bin" gofumpt
|
|
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE LICENSE.google
|
|
}
|