blob: 82a919e818a3884c2d7f664d9b077b8c43bc079d (
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
|
# Maintainer: Ors1mer <ors1mer_dev [[at]] proton.me>
pkgname='quadcastrgb'
pkgver=1.0.2
pkgrel=2
pkgdesc="set RGB mode for the microphone HyperX Quadcast S"
arch=('x86_64')
url="https://gitlab.com/Ors1mer/QuadcastRGB.git"
license=('GPL')
depends=('libusb' 'glibc')
makedepends=('git' 'gettext')
source=(git+$url)
md5sums=('SKIP')
build() {
cd QuadcastRGB
make $pkgname
}
package() {
cd QuadcastRGB
make install BINDIR_INS="$pkgdir/usr/bin/" \
MANDIR_INS="$pkgdir/usr/share/man/man1/"
}
|