summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fb1445cd48e4e0a4049a4713a89963c185066dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Jesse Lentz <jesselnz@gmail.com>

pkgname=iwgtk
pkgver=0.4
pkgrel=1
pkgdesc='Lightweight, graphical wifi management utility'
arch=(x86_64)
url='https://github.com/J-Lentz/iwgtk'
license=(GPL3)
depends=(iwd gtk3)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/J-Lentz/iwgtk/archive/v0.4.tar.gz")
sha256sums=(71bb85546a55bf710052d4947f6be5f5a01033d04d2d14a85a7e734dd570657d)

build() {
    cd ${pkgname}-${pkgver}
    make
}

package() {
    cd ${pkgname}-${pkgver}
    make prefix=/usr DESTDIR=${pkgdir} install
}