summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 105ff59e260e35ad0419b63fb8494320715e8969 (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
# Maintainer: Sefa Eyeoglu <contact@scrumplex.net>
# Container: gbr <gbr@protonmail.com>

pkgname=vibrantlinux
pkgver=2.1.10
pkgrel=1
pkgdesc="A tool to automate managing your screen's saturation depending on what programs are running"
arch=(x86_64)
url="https://github.com/libvibrant/vibrantLinux"
license=('MIT')
depends=("qt5-base" "libvibrant")
makedepends=("git")
source=("${pkgname}::git+https://github.com/libvibrant/vibrantLinux.git#tag=v${pkgver}")
sha512sums=('SKIP')


build() {
    cd "${pkgname}"

    qmake
    make ${MAKEFLAGS}
}

package() {
    cd "${pkgname}"

    make INSTALL_ROOT="${pkgdir}" install

    install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
    install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}