summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5875ac01250a76bfac92a6e1cefd63bd01da985d (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: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Jesse Jaara <jesse.jaara@gmail.com>
# Contributor: Gionn <me[at]gionn[dot]net>

pkgname=upnp-router-control
pkgver=0.3.5
pkgrel=1
pkgdesc="A GTK application to access the parameters of the router exposed via UPnP-IGD."
url="https://gitlab.gnome.org/DnaX/upnp-router-control"
arch=('x86_64')
license=('GPL3')
depends=('gtk3' 'gupnp')
makedepends=('meson')
checkdepends=('appstream-glib')
source=("$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('2950135af7e39ec10079d28be46f36163138e71fb9db5e211d4181a44c982798')

build() {
  arch-meson "$pkgname-$pkgver" build
  meson compile -C build
}

check() {
  meson test -C build --print-errorlogs
}

package() {
  meson install -C build --destdir "$pkgdir"
}

# vim:set ts=2 sw=2 et: