summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cbb34a5e67de78fba8d65059d6e9032eda0383f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Konstantin Pereiaslov <perk11@perk11.info>
pkgname=runwhenidle
pkgver=0.5.0
pkgrel=1
pkgdesc="Run a computentionally intensive program when user is not in front of the computer."
arch=('x86_64')
url="https://github.com/perk11/runwhenidle"
license=('GPL')
depends=('libxss' 'libxext' 'libx11' 'libxdmcp' 'libxau' 'libxcb')
makedepends=('git')
source=("git+https://github.com/perk11/runwhenidle.git?signed#tag=$pkgver")
sha256sums=('SKIP')

build() {
	cd $pkgname
	make release
	strip ./runwhenidle
}

package() {
	install -Dm755 $pkgname/runwhenidle "$pkgdir"/usr/bin/$pkgname
}