Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions packages/amp/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/SBUILD
_disabled: false

pkg: "amp"
pkg_id: "jmacdonald.amp"
pkgver: "0.7.1"
pkg_type: "static"
ghcr_pkg: "jmacdonald/amp"
category:
- "ConsoleOnly"
- "TextEditor"
description: "A complete text editor for your terminal"
homepage:
- "https://amp.rs"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "GPL-3.0-only"
build_asset:
- url: "https://raw.githubusercontent.com/jmacdonald/amp/main/LICENSE"
out: "LICENSE"
- url: "https://github.com/jmacdonald/amp/releases/download/${PKGVER}/amp-${ARCH}-unknown-linux-musl"
out: "amp"
note:
- "Official binary from https://github.com/jmacdonald/amp"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "amp"
repology:
- "amp"
src_url:
- "https://github.com/jmacdonald/amp"
tag:
- "editor"
- "text-editor"
- "tui"
x_exec:
host:
- "x86_64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/jmacdonald/amp/releases/latest" | jq -r '.tag_name'
5 changes: 3 additions & 2 deletions packages/bandwhich/static.stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ license:
build_asset:
- url: "https://raw.githubusercontent.com/imsnif/bandwhich/main/LICENSE.md"
out: "LICENSE"
- url: "https://github.com/imsnif/bandwhich/releases/download/v${PKGVER}/bandwhich-v${PKGVER}-${ARCH}-unknown-linux-musl.tar.gz"
out: "bandwhich.tar.gz"
note:
- "Official binary from https://github.com/imsnif/bandwhich"
- "[PORTABLE] (Portable Static Binary)"
Expand All @@ -42,7 +44,6 @@ x_exec:
pkgver: |
curl -qfsSL "https://api.github.com/repos/imsnif/bandwhich/releases/latest" | jq -r '.tag_name' | tr -d 'v'
run: |
soar dl "https://github.com/imsnif/bandwhich@v${PKGVER}" --glob "*${ARCH}-unknown-linux-musl.tar.gz" --yes -o bandwhich.tar.gz
tar -xf "bandwhich.tar.gz" -C "$SBUILD_TMPDIR/"
mv "$SBUILD_TMPDIR/bandwhich" "$SBUILD_OUTDIR/bandwhich"
mv "$SBUILD_TMPDIR/bandwhich" "$SBUILD_OUTDIR/$PKG"
rm -rf "bandwhich.tar.gz"
8 changes: 5 additions & 3 deletions packages/bat/static.stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "MIT"
build_asset:
- url: "https://github.com/sharkdp/bat/releases/download/v${PKGVER}/bat-v${PKGVER}-${ARCH}-unknown-linux-musl.tar.gz"
out: "bat.tar.gz"
note:
- "Official binary from https://github.com/sharkdp/bat"
- "[PORTABLE] (Portable Static Binary)"
Expand All @@ -37,8 +40,7 @@ x_exec:
pkgver: |
curl -qfsSL "https://api.github.com/repos/sharkdp/bat/releases/latest" | jq -r '.tag_name' | tr -d 'v'
run: |
soar dl "https://github.com/sharkdp/bat@v${PKGVER}" --glob "*${ARCH}-unknown-linux-musl.tar.gz" --yes -o bat.tar.gz
tar -xf "bat.tar.gz" -C "$SBUILD_TMPDIR/"
mv "$SBUILD_TMPDIR/bat"*"/bat" "$SBUILD_OUTDIR/$PKG"
mv "$SBUILD_TMPDIR/bat"*"/LICENSE-MIT" "$SBUILD_OUTDIR/LICENSE"
mv "$SBUILD_TMPDIR/bat-v${PKGVER}-${ARCH}-unknown-linux-musl/bat" "$SBUILD_OUTDIR/$PKG"
mv "$SBUILD_TMPDIR/bat-v${PKGVER}-${ARCH}-unknown-linux-musl/LICENSE-MIT" "$SBUILD_OUTDIR/LICENSE"
rm -rf "bat.tar.gz"
49 changes: 49 additions & 0 deletions packages/broot/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/SBUILD
_disabled: false

pkg: "broot"
pkg_id: "canop.broot"
pkgver: "1.55.0"
pkg_type: "static"
ghcr_pkg: "canop/broot"
category:
- "ConsoleOnly"
- "FileManager"
- "Utility"
description: "A new way to see and navigate directory trees"
homepage:
- "https://dystroy.org/broot"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "MIT"
build_asset:
- url: "https://raw.githubusercontent.com/Canop/broot/main/LICENSE"
out: "LICENSE"
- url: "https://github.com/Canop/broot/releases/download/v${PKGVER}/broot_${PKGVER}.zip"
out: "broot.zip"
note:
- "Official binary from https://github.com/Canop/broot"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "broot"
repology:
- "broot"
src_url:
- "https://github.com/Canop/broot"
tag:
- "file-manager"
- "tree"
- "tui"
x_exec:
host:
- "x86_64-linux"
- "aarch64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/Canop/broot/releases/latest" | jq -r '.tag_name' | tr -d 'v'
run: |
unzip -o "broot.zip" "${ARCH}-unknown-linux-musl/broot" -d "$SBUILD_TMPDIR/"
mv "$SBUILD_TMPDIR/${ARCH}-unknown-linux-musl/broot" "$SBUILD_OUTDIR/$PKG"
rm -rf "broot.zip"
43 changes: 43 additions & 0 deletions packages/choose/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/SBUILD
_disabled: false

pkg: "choose"
pkg_id: "theryangeary.choose"
pkgver: "1.3.7"
pkg_type: "static"
ghcr_pkg: "theryangeary/choose"
category:
- "ConsoleOnly"
- "Utility"
description: "A human-friendly and fast alternative to cut and (sometimes) awk"
homepage:
- "https://github.com/theryangeary/choose"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "GPL-3.0-only"
build_asset:
- url: "https://raw.githubusercontent.com/theryangeary/choose/master/LICENSE"
out: "LICENSE"
- url: "https://github.com/theryangeary/choose/releases/download/v${PKGVER}/choose-${ARCH}-unknown-linux-musl"
out: "choose"
note:
- "Official binary from https://github.com/theryangeary/choose"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "choose"
repology:
- "choose"
src_url:
- "https://github.com/theryangeary/choose"
tag:
- "cut"
- "awk"
- "cli"
x_exec:
host:
- "x86_64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/theryangeary/choose/releases/latest" | jq -r '.tag_name' | tr -d 'v'
50 changes: 50 additions & 0 deletions packages/dufs/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/SBUILD
_disabled: false

pkg: "dufs"
pkg_id: "sigoden.dufs"
pkgver: "0.45.0"
pkg_type: "static"
ghcr_pkg: "sigoden/dufs"
category:
- "ConsoleOnly"
- "Network"
- "Utility"
description: "A file server that supports static serving, uploading, searching, accessing control, webdav"
homepage:
- "https://github.com/sigoden/dufs"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "Apache-2.0"
- "MIT"
build_asset:
- url: "https://raw.githubusercontent.com/sigoden/dufs/main/LICENSE-MIT"
out: "LICENSE"
- url: "https://github.com/sigoden/dufs/releases/download/v${PKGVER}/dufs-v${PKGVER}-${ARCH}-unknown-linux-musl.tar.gz"
out: "dufs.tar.gz"
note:
- "Official binary from https://github.com/sigoden/dufs"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "dufs"
repology:
- "dufs"
src_url:
- "https://github.com/sigoden/dufs"
tag:
- "file-server"
- "webdav"
- "http"
x_exec:
host:
- "x86_64-linux"
- "aarch64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/sigoden/dufs/releases/latest" | jq -r '.tag_name' | tr -d 'v'
run: |
tar -xf "dufs.tar.gz" -C "$SBUILD_TMPDIR/"
mv "$SBUILD_TMPDIR/dufs" "$SBUILD_OUTDIR/$PKG"
rm -rf "dufs.tar.gz"
45 changes: 45 additions & 0 deletions packages/dummyhttp/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/SBUILD
_disabled: false

pkg: "dummyhttp"
pkg_id: "svenstaro.dummyhttp"
pkgver: "1.1.2"
pkg_type: "static"
ghcr_pkg: "svenstaro/dummyhttp"
category:
- "ConsoleOnly"
- "Network"
- "Utility"
description: "Super simple HTTP server that replies a fixed body with a fixed response code"
homepage:
- "https://github.com/svenstaro/dummyhttp"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "MIT"
build_asset:
- url: "https://raw.githubusercontent.com/svenstaro/dummyhttp/master/LICENSE"
out: "LICENSE"
- url: "https://github.com/svenstaro/dummyhttp/releases/download/v${PKGVER}/dummyhttp-${PKGVER}-${ARCH}-unknown-linux-musl"
out: "dummyhttp"
note:
- "Official binary from https://github.com/svenstaro/dummyhttp"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "dummyhttp"
repology:
- "dummyhttp"
src_url:
- "https://github.com/svenstaro/dummyhttp"
tag:
- "http"
- "server"
- "cli"
x_exec:
host:
- "x86_64-linux"
- "aarch64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/svenstaro/dummyhttp/releases/latest" | jq -r '.tag_name' | tr -d 'v'
49 changes: 49 additions & 0 deletions packages/fselect/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/SBUILD
_disabled: false

pkg: "fselect"
pkg_id: "jhspetersson.fselect"
pkgver: "0.9.2"
pkg_type: "static"
ghcr_pkg: "jhspetersson/fselect"
category:
- "ConsoleOnly"
- "FileTools"
- "Utility"
description: "Find files with SQL-like queries"
homepage:
- "https://github.com/jhspetersson/fselect"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "Apache-2.0"
- "MIT"
build_asset:
- url: "https://raw.githubusercontent.com/jhspetersson/fselect/master/LICENSE-MIT"
out: "LICENSE"
- url: "https://github.com/jhspetersson/fselect/releases/download/${PKGVER}/fselect-${ARCH}-linux-musl.gz"
out: "fselect.gz"
note:
- "Official binary from https://github.com/jhspetersson/fselect"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "fselect"
repology:
- "fselect"
src_url:
- "https://github.com/jhspetersson/fselect"
tag:
- "file-search"
- "sql"
- "cli"
x_exec:
host:
- "x86_64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/jhspetersson/fselect/releases/latest" | jq -r '.tag_name'
run: |
gunzip -f "fselect.gz"
mv "fselect" "$SBUILD_OUTDIR/$PKG"
chmod +x "$SBUILD_OUTDIR/$PKG"
44 changes: 44 additions & 0 deletions packages/genact/static.stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/SBUILD
_disabled: false

pkg: "genact"
pkg_id: "svenstaro.genact"
pkgver: "1.5.1"
pkg_type: "static"
ghcr_pkg: "svenstaro/genact"
category:
- "ConsoleOnly"
- "Amusement"
description: "A nonsense activity generator"
homepage:
- "https://github.com/svenstaro/genact"
maintainer:
- "QaidVoid (contact@qaidvoid.dev)"
license:
- "MIT"
build_asset:
- url: "https://raw.githubusercontent.com/svenstaro/genact/master/LICENSE"
out: "LICENSE"
- url: "https://github.com/svenstaro/genact/releases/download/v${PKGVER}/genact-${PKGVER}-${ARCH}-unknown-linux-musl"
out: "genact"
note:
- "Official binary from https://github.com/svenstaro/genact"
- "[PORTABLE] (Portable Static Binary)"
- "[NO_DESKTOP_INTEGRATION]"
provides:
- "genact"
repology:
- "genact"
src_url:
- "https://github.com/svenstaro/genact"
tag:
- "fun"
- "activity"
- "cli"
x_exec:
host:
- "x86_64-linux"
- "aarch64-linux"
shell: "sh"
pkgver: |
curl -qfsSL "https://api.github.com/repos/svenstaro/genact/releases/latest" | jq -r '.tag_name' | tr -d 'v'
Loading