mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Update Update Checker script. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove at_spi2_atk from packages.yaml Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix crew_mvdir entry. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add q package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust q package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add q build Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
22 lines
577 B
Ruby
22 lines
577 B
Ruby
# Adapted from Arch Linux q PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=q
|
|
|
|
require 'buildsystems/python'
|
|
|
|
class Q < Python
|
|
description 'SQL-like queries on tabular text data, including joins and subqueries'
|
|
homepage 'https://github.com/harelba/q'
|
|
version '3.1.6'
|
|
license 'GPL3'
|
|
compatibility 'x86_64'
|
|
source_url 'https://github.com/harelba/q.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: '126b2ae1d134132be5e94963e286dc14c33c141bc68892614283f853851aa064'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
end
|