blob: e489919a06f924ff930f2b7573ff271dcc7efd9a (
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
|
# Maintainer: Mutker Telag <dark.dusk53443@fastmail.com>
pkgname=nvidiactl-git
_pkgname=${pkgname%-git}
pkgver=r60.a31e801
pkgrel=1
pkgdesc='A tool providing dynamic fan speed and power limit adjustments for NVIDIA GPUs, balancing performance and noise. It can optionally be run as a systemd service.'
arch=('x86_64')
options=('!strip')
license=('MIT')
depends=('NVIDIA-MODULE')
makedepends=('git' 'go>=1.23' 'upx')
optdepends=('sudo' 'doas')
url="https://codeberg.org/mutker/$_pkgname"
source=("$_pkgname::git+$url.git")
conflicts=("$_pkgname")
provides=("$_pkgname")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
( set -o pipefail
git describe --long --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare() {
cd "$srcdir/$_pkgname"
if [ ! -d "cmd/nvidiactl" ]; then
echo "Error: cmd/nvidiactl directory not found"
return 1
fi
mkdir -p build
}
build() {
cd "$srcdir/$_pkgname"
export CGO_ENABLED=1
go build -v \
-ldflags="-s -w" \
-gcflags=all="-l -B" \
-trimpath \
-o build/"$_pkgname" ./cmd/nvidiactl
upx -qqq build/"$_pkgname"
}
package() {
cd "$srcdir/$_pkgname"
install -Dm 755 build/"$_pkgname" "$pkgdir/usr/bin/$_pkgname"
install -Dm 644 -t "$pkgdir/usr/share/doc/$_pkgname/" README.md
install -Dm 644 "$_pkgname.service" "$pkgdir/usr/lib/systemd/system/$_pkgname.service"
install -Dm 644 "$_pkgname.example.conf" "$pkgdir/etc/$_pkgname.conf"
install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
}
|