blob: 5ad9d1db3e80488825457e1e44302aafed72badd (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=fan-control
_app_id="io.github.wiiznokes.$pkgname"
pkgver=24.8.23
pkgrel=1
pkgdesc="Control your fans with different behaviors"
arch=('x86_64')
url="https://github.com/wiiznokes/fan-control"
license=('MIT')
depends=(
'gcc-libs'
'hicolor-icon-theme'
'libxkbcommon'
'lm_sensors'
)
makedepends=(
'cargo'
'clang'
'git'
'just'
)
source=("git+https://github.com/wiiznokes/fan-control.git#tag=$pkgver"
'git+https://github.com/wiiznokes/libsensors.git')
sha256sums=('44162d8154b1c2e8215949ac1ac5e39498d759f38283f3121aedd63e9a4111d6'
'SKIP')
prepare() {
cd "$pkgname"
git submodule init
git config submodule.hardware/libsensors.url "$srcdir/libsensors"
git -c protocol.file.allow=always submodule update
export RUSTUP_TOOLCHAIN=stable
cargo fetch --target "$CARCH-unknown-linux-gnu"
# Don't run `git submodule update`
sed -i '/submodule/d' justfile
}
build() {
cd "$pkgname"
CFLAGS+=" -ffat-lto-objects"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
just libsensors
cargo build --release
}
check() {
cd "$pkgname"
CFLAGS+=" -ffat-lto-objects"
export RUSTUP_TOOLCHAIN=stable
just test
}
package() {
cd "$pkgname"
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/${_app_id}"
ln -s "/usr/bin/${_app_id}" "$pkgdir/usr/bin/$pkgname"
install -Dm644 res/linux/desktop_entry.desktop \
"$pkgdir/usr/share/applications/${_app_id}.desktop"
install -Dm644 res/linux/app_icon.svg \
"$pkgdir/usr/share/icons/hicolor/scalable/apps/${_app_id}.svg"
install -Dm644 res/linux/metainfo.xml \
"$pkgdir/usr/share/metainfo/${_app_id}.metainfo.xml"
install -Dm644 "res/linux//60-$pkgname.rules" -t \
"$pkgdir/usr/lib/udev/rules.d/"
install -Dm644 res/linux/*.md -t "$pkgdir/usr/share/doc/$pkgname/"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|