mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 13:05:00 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
31 lines
686 B
Bash
31 lines
686 B
Bash
# Maintainer: Eshan Roy <m.eshanized@gmail.com>
|
|
|
|
pkgname=snigdhaos-hyprland-config
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
arch=('any')
|
|
url="https://github.com/Snigdha-OS/snigdhaos-hyprland-config"
|
|
license=('MIT')
|
|
makedepends=('coreutils')
|
|
source=("")
|
|
sha256sums=('SKIP')
|
|
pkgdesc='Custom Hyprland configuration for Snigdha OS, optimized for performance and aesthetics.'
|
|
depends=(
|
|
'gtk-engine-murrine'
|
|
'waybar'
|
|
'hyprland'
|
|
'kvantum-qt5'
|
|
'kvantum'
|
|
'snigdhaos-asiant-fonts'
|
|
'qt5ct'
|
|
)
|
|
conflicts=()
|
|
provides=()
|
|
install=$pkgname.install
|
|
|
|
package() {
|
|
install -d "$pkgdir"/etc
|
|
cp -rf "$srcdir"/$pkgname/etc "$pkgdir/etc"
|
|
install -d "$pkgdir"/usr
|
|
cp -rf "$srcdir"/$pkgname/usr "$pkgdir/usr"
|
|
} |