blob: 5321a2e331dca44fd661cf32b12d93f0bd2d1be9 (
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
|
# Maintainer: Amritpal Singh sysgrammer@protonmail.com
pkgname=perfmode
pkgver=2.1.0
pkgrel=3
pkgdesc="A fan-control utility for ASUS TUF Gaming series of Laptops"
arch=('x86_64')
url="https://github.com/icebarf/perfmode"
license=('GPL')
groups=()
depends=()
makedepends=('gcc')
optdepends=('faustus-dkms: A 3rd party kernel module for ASUS TUF Laptops')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/icebarf/perfmode/archive/refs/tags/$pkgver.tar.gz")
build() {
cd "$pkgname-$pkgver"
make pkg
}
package(){
cd "$pkgname-$pkgver"
mkdir -p "$pkgdir/usr/bin"
make DESTDIR="$pkgdir/usr/bin/" install
}
sha256sums=('c28c372ea486f7dcb72d30488e1a897252bec8866ea6d69f19be3acd3f1e9b28')
|