blob: a384ade83ce6eb0f755092fc2f8cd6a1003aeb94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: banbanchs <memory.silentvoyage@gmail.com>
pkgname=jid-bin
_pkgname=jid
pkgver=0.6.2
pkgrel=1
pkgdesc="Json incremental digger"
url="https://github.com/simeji/jid"
arch=("x86_64")
license=("MIT")
provides=()
conflicts=()
depends=("glibc")
source=("https://github.com/simeji/jid/releases/download/${pkgver}/${_pkgname}_linux_amd64.zip")
sha256sums=('17bf8657edd74e570286018d86a4a8835ced0e9ea1ea79b5284f9caa9355275f')
package() {
cd "${srcdir}"
install -Dm644 "${srcdir}/${_pkgname}_linux_amd64" "$pkgdir/usr/bin/${_pkgname}"
}
|