summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d91beb6828a9661c51809588b9edc1f97719e05f (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
# Maintainer: HaoCheng <ch1994@outlook.com>
pkgname=getit
pkgver=4.0.10
pkgrel=2
pkgdesc="Application to send HTTP requests to test your API endpoints."
arch=('any')
url="https://github.com/bartkessels/GetIt"
license=('GPL')
groups=()
depends=('webkit2gtk' 'gtksourceview3')
makedepends=('git' 'meson') # 'bzr', 'git', 'mercurial' or 'subversion'
provides=("${pkgname}")
conflicts=("${pkgname}")
replaces=()
backup=()
options=()
install=
source=("${pkgname}::git+https://github.com/bartkessels/GetIt.git#tag=${pkgver}")
noextract=()
md5sums=('SKIP')

build() {
	cd "$srcdir/${pkgname}"
	meson --prefix=/usr build
	meson compile -C build
}

package() {
	cd "$srcdir/${pkgname}"
	DESTDIR="$pkgdir" meson install -C build

}