blob: 6f06fe5011b3630df49b933ad586ca98b6212b6d (
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
|
# Maintainer: Stephen Brandt <stephen@stephenbrandt.com>
# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
pkgname=haguichi
pkgver=1.5.1
pkgrel=1
pkgdesc="Provides a user friendly GUI to control the Hamachi client on Linux"
arch=(x86_64)
url="https://haguichi.net"
license=(GPL-3.0-or-later)
depends=(
gtk4
libadwaita
libgee
libportal
libportal-gtk4
logmein-hamachi
)
makedepends=(
meson
vala
)
source=("http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz")
sha256sums=('e2f449d32cbe482809ad2385e32d643381328b4c61fb611bdae110dbc39c81ce')
build() {
arch-meson $pkgname-$pkgver build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|