summaryrefslogtreecommitdiff
path: root/hyprland-raveos/hyprland-qt-support/PKGBUILD
diff options
context:
space:
mode:
authorNippy <nippy@Beller-Mac-mini.lan>2026-09-07 20:57:38 +0200
committerNippy <nippy@Beller-Mac-mini.lan>2026-09-07 20:58:08 +0200
commitaf1fec2d111fb30d135025d99a2822e23f1d016a (patch)
treec19ad6e85ed73433493109e99e23f7c57fbfab8a /hyprland-raveos/hyprland-qt-support/PKGBUILD
parent5f575b0fa752d9086441e6203f8e5633713026f5 (diff)
downloadRaveOS-PKGBUILD-af1fec2d111fb30d135025d99a2822e23f1d016a.tar.gz
RaveOS-PKGBUILD-af1fec2d111fb30d135025d99a2822e23f1d016a.zip
hyperland-fix
Diffstat (limited to 'hyprland-raveos/hyprland-qt-support/PKGBUILD')
-rw-r--r--hyprland-raveos/hyprland-qt-support/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/hyprland-raveos/hyprland-qt-support/PKGBUILD b/hyprland-raveos/hyprland-qt-support/PKGBUILD
new file mode 100644
index 0000000..f25a94a
--- /dev/null
+++ b/hyprland-raveos/hyprland-qt-support/PKGBUILD
@@ -0,0 +1,41 @@
+# Maintainer: Caleb Maclennan <caleb@alerque.com>
+# Contributor: Charles Dong <chardon_cs@proton.me>
+
+pkgname=hyprland-qt-support
+pkgver=0.1.0
+pkgrel=20
+pkgdesc='QML style provider for Hypr* QT apps'
+arch=(x86_64 aarch64)
+url="https://github.com/hyprwm/$pkgname"
+license=(BSD-3-Clause)
+depends=(
+ libgcc
+ libstdc++
+ glibc # libc.so libm.so
+ hyprlang libhyprlang.so
+ qt6-base # libQt6Core.so libQt6Gui.so libQt6Widgets.so
+ qt6-declarative # libQt6Qml.so libQt6QuickControls2.so
+)
+makedepends=(cmake)
+provides=(libhyprland-quick-style-impl.so
+ libhyprland-quick-style.so
+ libhyprland-quick-style-implplugin.so
+ libhyprland-quick-styleplugin.so)
+_archive="$pkgname-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('cac1f980bd088b890097f3f999cfdf03e73ee94c53f3c92d0b3bc23baa9e7b2c')
+
+build() {
+ cd "$_archive"
+ cmake -B build \
+ -D CMAKE_INSTALL_PREFIX=/usr \
+ -D INSTALL_QML_PREFIX=/lib/qt6/qml \
+ -D CMAKE_BUILD_TYPE=Release
+ cmake --build build
+}
+
+package() {
+ cd "$_archive"
+ DESTDIR="$pkgdir" cmake --install build
+ install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}