blob: 1cf0892e874cd7f88709eee368221c424da30f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Maintainer: Jaime Martínez Rincón <jaime(at)jamezrin(dot)name>
pkgname=httptoolkit-bin
pkgver=1.17.2
pkgrel=1
pkgdesc="Beautiful, cross-platform & open-source HTTP(S) proxy, analyzer and client."
arch=("x86_64")
url="https://httptoolkit.tech/"
license=('GPL3')
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=(httptoolkit)
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/httptoolkit/httptoolkit-desktop/releases/download/v${pkgver}/HttpToolkit-${pkgver}.deb")
noextract=()
validpgpkeys=()
md5sums=('37ba3b5541f1a78380437d8894e57bf8')
package() {
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/opt/HTTP Toolkit"
install -d "${pkgdir}/usr/share/icons"
install -d "${pkgdir}/usr/share/doc"
install -d "${pkgdir}/usr/share/applications"
# Extract package fs from deb
bsdtar -O -xf "HttpToolkit-${pkgver}.deb" data.tar.xz | bsdtar -C "${pkgdir}" -xJf -
# Set all directories to 755 mode
find "${pkgdir}" -type d -exec chmod 755 {} +
# Add symlink to bin
ln -s "/opt/HTTP Toolkit/httptoolkit" "${pkgdir}/usr/bin/httptoolkit"
}
|