summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 10c07086ad9f26b2f595e58414b002892a7d026a (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
# Maintainer: Neurognostic <neurognostic@astranetics.com>
# Contributor: Eric Sandoval <esandovalruezga@gmail.com>
# Contributor: Alexander Samoylenko <lxmnk@tuta.io>
_pkgname=xidlehook
pkgname=$_pkgname-withdrawnwin
pkgver=0.10.1
pkgrel=2
pkgdesc='xautolock rewrite in Rust, with a few extra features (withdrawn window patched fork)'
url='https://github.com/realSaltyFish/xidlehook'
arch=('x86_64' 'aarch64')
license=('MIT')
makedepends=('rust' 'libxss' 'python')
optdepends=()
depends=('libpulse' 'libxcb')
conflicts=($_pkgname)
provides=($_pkgname)
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('f2d5d400031a1a4aeeb6950fd04ff51350628153ec9c4d74d9d9f1070e827cb5')

build() {
	cd "$srcdir/$_pkgname-$pkgver"
	cargo build --release
}

check() {
	cd "$srcdir/$_pkgname-$pkgver"
	cargo test --manifest-path xidlehook-core/Cargo.toml
	cargo test --all-features --manifest-path xidlehook-core/Cargo.toml

	cargo test --manifest-path xidlehook-daemon/Cargo.toml
	cargo test --all-features --manifest-path xidlehook-daemon/Cargo.toml
}

package() {
	cd "$srcdir/$_pkgname-$pkgver"
	install -Dm 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
	install -Dm 755 -t "$pkgdir/usr/bin" "target/release/$_pkgname"{,-client}
}