summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 339b5ba088405d28874606c651224fcb7ce0df46 (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
# Maintainer: Oliver Anhuth <oliver.anhuth at zoho.com>

pkgname=envview
pkgver=1.0.0
pkgrel=1
pkgdesc="A simple graphical viewer for (inherited) environment variables"
arch=("i686" "x86_64")
url="https://github.com/oliver-anhuth/envview"
license=("MIT")
depends=("qt5-base")
makedepends=("qt5-base" "gcc-multilib")
source=("$pkgname-$pkgver.tar.gz::https://github.com/oliver-anhuth/envview/archive/1.0.0.tar.gz")
sha256sums=('SKIP')

build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    ./configure
    make
}

package() {
    cd ${srcdir}/${pkgname}-${pkgver}
    make -f install.make DESTDIR="${pkgdir}" install
}