blob: 023c39899f96dd22510ee99b4ed9019d6813a61c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: ObserverOfTime <chronobserver@disroot.org>
pkgname=jaq-bin
pkgver=2.1.1
pkgrel=1
pkgdesc='A jq clone focused on correctness, speed, and simplicity'
url='https://github.com/01mf02/jaq'
arch=(x86_64 i686 aarch64)
license=(MIT)
conflicts=('jq' 'jaq')
provides=('jq' "jaq=$pkgver")
depends=('gcc-libs' 'glibc')
source=("$pkgname-$pkgver::$url/releases/download/v$pkgver/jaq-$CARCH-unknown-linux-gnu"
"https://raw.githubusercontent.com/01mf02/jaq/7a3466f/LICENSE-MIT")
b2sums=('793512d8b8d94d6fee51b41816ae9cf03923ed763cc6f1a021e4c1c7591bfbf1fc31afa720945142e5a17d62afbecf3b48cbd26ff1ec4e637c713fb3eca01e9f'
'fb26aba82fe953b9895595c5b7c11b5363b83bd60cf1cb6aab572df6dadb940711eda080f8ad77fb519e79309211318b6200081bb05be7b71117a07082c3815d')
options=(!strip)
package() {
install -Dm644 LICENSE-MIT -t "$pkgdir"/usr/share/licenses/$pkgname
install -Dm755 $pkgname-$pkgver "$pkgdir"/usr/bin/jaq
ln -s "$pkgdir"/usr/bin/jq jaq
}
|