blob: f397278ef39274ef79ebe404dc9ce3f814e42da5 (
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
|
# Contributor: André Klitzing <aklitzing@gmail.com>
# Maintainer: André Klitzing <aklitzing@gmail.com>
pkgname=geth
pkgver=1.9.6
pkgrel=0
pkgdesc="Official Go implementation of the Ethereum protocol"
url="https://geth.ethereum.org/"
arch="all !aarch64" # build fails
license="LGPL-3.0"
makedepends="go linux-headers"
checkdepends="fuse"
options="!check"
source="$pkgname-$pkgver.tar.gz::https://github.com/ethereum/go-ethereum/archive/v$pkgver.tar.gz"
builddir="$srcdir/go-ethereum-$pkgver"
build() {
make
}
check() {
make test
}
package() {
mkdir -p "$pkgdir"/usr/bin
install -m755 -t "$pkgdir"/usr/bin build/bin/*
}
sha512sums="2c945a145b6564c7ebca9adf6049ed4901f78ea15a438d6004df5c1f76a52f087beb45986ed821ad300159d672b56ab5d737237abb596945e1f1588b7511c1de geth-1.9.6.tar.gz"
|