first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/jq/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/jq/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.7.1
First version

16
src/jq/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="jq"
DESC="Lightweight and flexible command-line JSON processor"
VERSION="1.7.1"
FILES=("https://github.com/jqlang/jq/releases/download/jq-$VERSION/jq-$VERSION.tar.gz")
HASHES=("478c9ca129fd2e3443fe27314b455e211e0d8c60bc8ff7df703873deeee580c2")
DEPENDS=("glibc" "oniguruma")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" prefix=/usr install
cd .. && rm -r $NAME-$VERSION
}