blob: 59ad5febb046b7a07b1dc527da0780aabc1555b2 (
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
|
pkgname=raveos-calamares-module
pkgver=2.0.0
pkgrel=0
pkgdesc="RaveOS Calamares Wi-Fi viewmodule"
arch=('x86_64')
options=('!debug')
url="https://git.rp1.hu/RaveOS"
license=('GPL')
makedepends=('cmake' 'qt6-tools' 'kcoreaddons' 'calamares')
depends=('qt6-base' 'qt6-declarative' 'networkmanager')
source=()
sha256sums=()
build() {
cd "$startdir"
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
}
package() {
cd "$startdir"
DESTDIR="$pkgdir" cmake --install build
}
|