summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9012576412255b0990027ccea0cd444a9a22ee33 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Maintainer: marazmista <marazmista@tuta.io>

pkgname=radeon-profile-git
pkgver=20200824.r22.g295d189
pkgrel=3
pkgdesc="App for display info about radeon card"
url="http://github.com/emerge-e-world/radeon-profile"
arch=('i686' 'x86_64')
license=('GPL2')
depends=('qt5-base' 'qt5-charts' 'libxkbcommon-x11' 'libxrandr' 'libx11' 'gcc-libs' 'glibc')
makedepends=('qt5-tools' 'git')
optdepends=('radeon-profile-daemon: system daemon for reading card info'
	'sudo: start with root privilages without password'
	'mesa-demos: for glxinfo'
	'xorg-xdriinfo: display driver name'
	'xorg-xrandr: show card connected outputs'
	'xf86-video-ati: radeon open source driver'
	'xf86-video-amdgpu: amdgpu open source driver')
provides=('radeon-profile')
conflicts=('radeon-profile')
source=("git+https://github.com/emerge-e-world/radeon-profile.git")
sha256sums=('SKIP')

pkgver() {
    cd "$srcdir/radeon-profile"
    git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "$srcdir/radeon-profile/radeon-profile"
    lrelease radeon-profile.pro
    qmake-qt5 QMAKE_CFLAGS_RELEASE="${CFLAGS}" QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" CONFIG+=silent
    make
}

package() {
    cd "$srcdir/radeon-profile/radeon-profile"
    install -Dm755 "target/radeon-profile" "$pkgdir/usr/bin/radeon-profile"
    install -Dm644 "extra/radeon-profile.png" "$pkgdir/usr/share/pixmaps/radeon-profile.png"
    install -Dm644 "extra/radeon-profile.desktop" "$pkgdir/usr/share/applications/radeon-profile.desktop"

    cd translations
    for translation in *.qm
    do
	install -Dm644 $translation "$pkgdir/usr/share/radeon-profile/$translation"
    done
}