blob: e582fd7f3bb3b161ac9fe8b89252cba18fe4b908 (
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
|
# Maintainer: John Oberhauser <j.aur@obez.io>
pkgname=okpanel-git
pkgver=0.1.0
pkgrel=3
pkgdesc="A custom AGS panel for hyprland"
license=('GPL3')
arch=('any')
url="https://github.com/JohnOberhauser/OkPanel"
depends=(
'aylurs-gtk-shell-git'
'gvfs'
'sox'
'wf-recorder'
'pipewire-pulse'
'grim'
'slurp'
'networkmanager'
'wireplumber'
'bluez'
'bluez-utils'
'dart-sass'
'upower'
'brightnessctl'
'ttf-jetbrains-mono-nerd'
'libnotify'
)
makedepends=('rsync')
source=("git+$url.git")
sha256sums=("SKIP")
package() {
cd "$srcdir/$(basename "$url")"
install -Dm755 bin/okpanel "$pkgdir/usr/bin/okpanel"
install -Dm755 bin/okpanel-share "$pkgdir/usr/bin/okpanel-share"
mkdir -p "$pkgdir/usr/share/okpanel"
rsync -a --exclude='@girs' --exclude='node_modules' ags/ "$pkgdir/usr/share/okpanel/"
}
|