summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b1c234082a7855c4f9ea6a8242284eeae7f0182c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#Maintainer: Ponies <marmabelle at gmail dot com>
pkgname=postman-cli
pkgver=1.7.0
pkgrel=1
pkgdesc="The Postman CLI is the command-line companion that is developed, supported, and signed by Postman. All test results will be automatically pushed to the app."
provides=('postman-cli')
arch=('x86_64')
options=("!strip")
url="https://www.postman.com/product/what-is-postman/"
license=('custom')
source=("postman-cli.tar.gz::https://dl-cli.pstmn.io/download/latest/linux64")
depends=(libxss nss)

sha256sums=('45a205d2dcc90399fe736fa95ac36304dcbd12977214cb6b3070f17205f780b7')
prepare(){
    cd "$srcdir"
    tar -xzf postman-cli.tar.gz
}
package() {
    install -dm755 "$pkgdir/usr/bin/"
    cp "${srcdir}/postman-cli" "${pkgdir}/usr/bin/"
}