blob: c95ee1d455740bb76464cdc5eee4292e92b53e77 (
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
|
# Maintainer: Entailz <entail-wraps0r at icloud dot com>
pkgname=quickshell
pkgver=0.1.0
pkgrel=1
pkgdesc='Simple and flexbile QtQuick based desktop shell toolkit.'
arch=(x86_64 aarch64)
url='https://github.com/outfoxxed/quickshell'
license=('GPL')
depends=('qt6-declarative' 'qt6-base' 'jemalloc' 'qt6-svg')
optdepends=(
'libxcb: X11 support'
'qt6-wayland: Wayland support'
'wayland-protocols: Wayland support'
'wayland: Wayland support'
'libpipewire: Pipewire support'
)
makedepends=('ninja' 'cmake' 'pkgconf')
source=("git+https://github.com/outfoxxed/quickshell.git")
sha256sums=('SKIP')
build() {
cd "${pkgname}"
cmake -GNinja -B build \
-DCMAKE_BUILD_TYPE="RelWithDebInfo"
cmake --build build
}
package() {
cd "${pkgname}"
DESTDIR=$pkgdir cmake --install build
install -Dm0644 -t "{$pkgdir}/usr/share/licenses/${pkgname}" LICENSE
}
|