blob: a07510e23cfa1a4ed6d6f56b376488c9924d015a (
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
|
# Maintainer: Ranadeep B < mail at rnbguy dot at >
_orgname=sentinel
_ownername=${_orgname}-official
_reponame=hub
_pkgname=${_orgname}${_reponame}
pkgname=${_pkgname}-bin
pkgver=12.0.2
pkgrel=1
pkgdesc="The official Sentinel blockchain Hub"
arch=('x86_64')
url="https://github.com/${_ownername}/${_reponame}"
license=('Apache')
provides=(${_pkgname})
conflicts=(${_pkgname})
source=("https://raw.githubusercontent.com/${_ownername}/${_reponame}/v${pkgver}/LICENSE")
source_x86_64=("${_pkgname}-${pkgver}-linux-amd64::https://github.com/${_ownername}/${_reponame}/releases/download/v${pkgver}/${_pkgname}")
sha256sums=('c55026df88ea80edee48ffd049972b4508a1ccd4efde124df603462cb9898f73')
sha256sums_x86_64=('eb54731ab4802173b5e889d91e68d9df87e0b5e36c94fb59ead288ce20bca10e')
package() {
install -DT "${srcdir}/${_pkgname}-${pkgver}-linux-amd64" "${pkgdir}/usr/bin/${_pkgname}"
install -m644 -Dt "${pkgdir}/usr/share/licenses/${_pkgname}" LICENSE
}
|