Compare commits

...

4 Commits

Author SHA1 Message Date
Willow C Reed 8f693a12a1 something something idk 2026-05-21 14:11:59 -06:00
Willow C Reed c0c0a639a3 switch to be ready for release instead of being a preview package 2026-05-20 23:44:46 -06:00
Willow C Reed fd6fa6d980 add packager 2026-05-20 23:35:31 -06:00
Willow C Reed 323ea13f8d add spec for noctalia-preview 2026-05-20 23:34:42 -06:00
3 changed files with 90 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "noctalia.spec"
}
}
+82
View File
@@ -0,0 +1,82 @@
%global debug_package %{nil}
Name: noctalia-preview
Version: 5.0.0
Release: 1%{?dist}
Summary: A lightweight Wayland shell and bar built directly on Wayland + OpenGL ES, with no Qt or GTK dependency.
License: MIT
URL: https://github.com/noctalia-dev/noctalia-shell
Source0: https://github.com/noctalia-dev/noctalia-shell/releases/download/v%{version}/noctalia-v%{version}.tar.gz
BuildRequires: meson
BuildRequires: gcc-c++
BuildRequires: git
BuildRequires: pipewire-devel
BuildRequires: sdbus-cpp-devel
BuildRequires: pkgconfig(cairo)
BuildRequires: pkgconfig(egl)
BuildRequires: pkgconfig(freetype2)
BuildRequires: pkgconfig(fontconfig)
BuildRequires: pkgconfig(glesv2)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(jemalloc)
BuildRequires: pkgconfig(libcurl)
BuildRequires: pkgconfig(librsvg-2.0)
BuildRequires: pkgconfig(libwebp)
BuildRequires: pkgconfig(pam)
BuildRequires: pkgconfig(pango)
BuildRequires: pkgconfig(polkit-gobject-1)
BuildRequires: pkgconfig(wayland-client)
BuildRequires: pkgconfig(wayland-protocols)
BuildRequires: pkgconfig(xkbcommon)
Provides: desktop-notification-daemon
Provides: PolicyKit-authentication-agent
Requires: hicolor-icon-theme
Requires: dejavu-sans-fonts
Requires: libwebp
Recommends: ddcutil
Recommends: gpu-screen-recorder
Recommends: power-profiles-daemon
Recommends: jamalloc-devel
Conflicts: noctalia-shell
Packager: Willow C Reed <terra@willowidk.dev>
%description
A lightweight Wayland shell and bar built directly on Wayland + OpenGL ES, with no Qt or GTK dependency.
%prep
%autosetup -n %{upstreamname}-%{commit}
# Manually insert commit hash
sed -i "s/'unknown'/'%{shortcommit}'/g" meson.build
%build
%meson
%meson_build
%install
%meson_install
install -d %{buildroot}%{_licensedir}/%{name}/third_party
find third_party -type f \( -name "LICENSE*" -o -name "COPYING*" -o -name "NOTICE*" \) | while read -r file; do
# Create the destination subdirectory
dest_dir="%{buildroot}%{_licensedir}/%{name}/$(dirname "$file")"
install -d "$dest_dir"
# Copy the file to its specific subfolder
install -p -m 0644 "$file" "$dest_dir/"
done
%files
%doc README.md
%license LICENSE
%{_licensedir}/%{name}/third_party/
%{_bindir}/noctalia
%{_datadir}/noctalia/
%changelog
* Wed May 20 2026 Willow C Reed <terra@willowidk.dev>
- Port to terra from Fedora COPR lionheartp/Hyprland
+3
View File
@@ -0,0 +1,3 @@
let commit = get(`https://api.github.com/repos/noctalia-dev/noctalia-qs/commits?sha=v5`).json_arr()[0];
rpm.global("commit", release.sha);