summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a5d89efefdcef3694ba222be49390d6b4c0e097c (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
# Maintainer: Jesse Lentz <jesse@twosheds.org>

pkgname=iwgtk
pkgver=0.9
pkgrel=1
pkgdesc='Lightweight wireless networking GUI (front-end for iwd)'
arch=(x86_64)
url='https://github.com/J-Lentz/iwgtk'
license=(GPL3)
depends=('iwd>=1.29' 'gtk4>=4.6' qrencode adwaita-icon-theme)
makedepends=('meson>=0.60.0' scdoc)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/J-Lentz/iwgtk/archive/v0.9.tar.gz")
sha256sums=(84a82dc730fe536034a65d148840e975c1353f4114db527439170ff410583d31)

build() {
    cd ${pkgname}-${pkgver}
    meson setup --prefix /usr --buildtype release --warnlevel 0 build
    cd build
    meson compile
}

package() {
    cd ${pkgname}-${pkgver}/build
    meson install --destdir ${pkgdir}
}