blob: 29cfda018ceffb72961def6c0c4261c7217eb9ca (
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=0.11.5
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=('62e5366bf7568de976069b9d87fd5e5026beb591b8966028eaf525bfb8b81bcf')
package() {
install -DT "${srcdir}/${_pkgname}-${pkgver}-linux-amd64" "${pkgdir}/usr/bin/${_pkgname}"
install -m644 -Dt "${pkgdir}/usr/share/licenses/${_pkgname}" LICENSE
}
|