blob: e9c906091ef10d9e69901a3d00179921f5101a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Chenx Dust <chenxijun2247338@hotmail.com>
pkgname=protoscope
pkgver=8e7a6aafa2c9958527b1e0747e66e1bfff045819
pkgrel=1
pkgdesc="A simple language to represent and emit the Protobuf wire format."
arch=('any')
url="https://github.com/protocolbuffers/protoscope"
license=('Apache')
makedepends=('go')
provides=('protoscope')
build() {
export GOPATH=$srcdir
go install github.com/protocolbuffers/protoscope/cmd/protoscope...@latest
}
package() {
install -d -m755 $pkgdir/usr/bin/
cp -a $srcdir/bin/protoscope $pkgdir/usr/bin/
}
|