summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 42175b3a9ad1029563374675bd0023be37821acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pkgname=protobuf-rust-git
pkgver=1.0.24.511
pkgrel=1
pkgdesc="Rust Support for Google's protocol buffers"
arch=('x86_64' 'i686')
url="https://github.com/stepancheg/rust-protobuf"
license=('MIT' 'Apache-2.0')
depends=('protobuf')
makedepends=('cargo')
optdepends=()
provides=('protobuf-rust')
conflicts=('protobuf-rust')
source=($pkgname::git+https://github.com/stepancheg/rust-protobuf.git)
sha256sums=('SKIP')

pkgver() {
    cd $pkgname
	echo $(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).$(git rev-list --count HEAD)
}

build() {
    cd $pkgname
	cargo build --release
}

package() {
	cd $pkgname
	install -D -m755 "$srcdir/$pkgname/target/release/protoc-gen-rust" "$pkgdir/usr/bin/protoc-gen-rust"
}