blob: 2b9c15819e9bb6612089ad8447c240ba7a09f6d0 (
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
|
# Maintainer: William Edwards <shadowapex@gmail.com>
pkgname=powerstation-git
_pkgbase=powerstation
pkgver=v0.2.2.r0.g2b2c007
pkgrel=2
pkgdesc="Open source performance daemon with DBus interface"
arch=('x86_64')
url="https://github.com/ShadowBlip/PowerStation"
license=('GPL')
depends=('dbus' 'pciutils')
makedepends=('rust' 'make' 'cmake' 'clang' 'git')
provides=('powerstation')
conflicts=('powerstation-bin')
source=("${_pkgbase}::git+https://github.com/ShadowBlip/${_pkgbase}.git")
options=(!lto)
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${_pkgbase}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$srcdir/${_pkgbase}"
}
build() {
cd "$srcdir/${_pkgbase}"
make build
}
package() {
cd "$srcdir/${_pkgbase}"
make install PREFIX=${pkgdir}/usr NO_RELOAD=true
}
|