blob: 542db106b368959ef9ce5df6673a555d72ef21e3 (
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
|
# Maintainer: whysooraj <whysooraj.official@gmail.com>
pkgname=tide-island-git
_pkgname=Tide-island
pkgver=r196.783cae2
pkgrel=1
pkgdesc="A dynamic island for Hyprland using Quickshell"
arch=('x86_64')
url="https://github.com/sai21-learn/Tide-island"
license=('unknown')
depends=(
'qt6-base'
'qt6-declarative'
'qt6-connectivity'
'qt6-svg'
'hyprland'
'wireplumber'
'libpulse'
'brightnessctl'
'upower'
'bluez'
'bluez-utils'
'quickshell'
)
makedepends=('cmake' 'git')
optdepends=(
'cava: for audio visualizer'
'imagemagick: for wallpaper thumbnails'
'networkmanager: for wifi control'
'iwd: for wifi control'
)
provides=('tide-island')
conflicts=('tide-island')
install='tide-island.install'
source=("$_pkgname::git+https://github.com/sai21-learn/Tide-island.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -S "$_pkgname" -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|