10000 Add Httptoolkit by zero77 · Pull Request #1329 · wimpysworld/deb-get · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add Httptoolkit #1329

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions 01-main/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ helio-workstation
heroic
homeassistant-supervised
hugo
httptoolkit
hyper
hyperfine
i3
Expand Down
14 changes: 7C30 14 additions & 0 deletions 01-main/packages/httptoolkit
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DEFVER=1
ARCHS_SUPPORTED="amd64 arm64"
case ${HOST_ARCH} in
amd64) ARCH=x64 ;;
arm64) ARCH=arm64 ;;
esac
get_github_releases "httptoolkit/httptoolkit-desktop" "latest"
if [ "${ACTION}" != "prettylist" ]; then
URL=$(grep -m 1 "browser_download_url.*${ARCH}\.deb\"" "${CACHE_FILE}" | cut -d'"' -f4)
VERSION_PUBLISHED=$( cut -d'/' -f8 <<< "${URL//v/}")
fi
PRETTY_NAME="httptoolkit"
WEBSITE="https://github.com/httptoolkit/httptoolkit-desktop"
SUMMARY="Electron wrapper to build and distribute HTTP Toolkit for the desktop"
0