mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-03 18:32:18 +00:00
ab4355d2a7
* Add scenefx package
* Update anda/lib/scenefx/scenefx.spec
Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Atmois <130537361+Atmois@users.noreply.github.com>
* Update anda/lib/scenefx/scenefx.spec
Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Atmois <130537361+Atmois@users.noreply.github.com>
* Update scenefx.spec
Signed-off-by: Atmois <130537361+Atmois@users.noreply.github.com>
* Refactor version
* Add rhai file
* Add quote marker
---------
Signed-off-by: Atmois <130537361+Atmois@users.noreply.github.com>
Co-authored-by: madomado <madonuko@outlook.com>
(cherry picked from commit 14681c240d)
Co-authored-by: Atmois <130537361+Atmois@users.noreply.github.com>
77 lines
1.7 KiB
RPMSpec
77 lines
1.7 KiB
RPMSpec
Name: scenefx
|
|
Version: 0.1
|
|
Release: 1%{?dist}
|
|
|
|
Summary: A drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects
|
|
URL: https://github.com/wlrfx/scenefx
|
|
License: MIT
|
|
|
|
Source0: %{url}/archive/refs/tags/%version.tar.gz
|
|
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: glslang
|
|
BuildRequires: gnupg2
|
|
BuildRequires: meson >= 0.59.0
|
|
|
|
BuildRequires: (pkgconfig(wlroots) >= 0.17.0 with pkgconfig(wlroots) < 0.18)
|
|
BuildRequires: pkgconfig(egl)
|
|
BuildRequires: pkgconfig(gbm) >= 17.1.0
|
|
BuildRequires: pkgconfig(glesv2)
|
|
BuildRequires: pkgconfig(hwdata)
|
|
BuildRequires: pkgconfig(libdrm) >= 2.4.114
|
|
BuildRequires: pkgconfig(pixman-1) >= 0.42.0
|
|
BuildRequires: pkgconfig(wayland-client)
|
|
BuildRequires: pkgconfig(wayland-protocols) >= 1.32
|
|
BuildRequires: pkgconfig(wayland-scanner)
|
|
BuildRequires: pkgconfig(wayland-server) >= 1.22
|
|
|
|
|
|
Packager: Atmois <atmois@atmois.com>
|
|
|
|
%description
|
|
%{summary}
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} == %{version}-%{release}
|
|
# for examples
|
|
Suggests: gcc
|
|
Suggests: meson >= 0.58.0
|
|
Suggests: pkgconfig(wayland-egl)
|
|
|
|
%description devel
|
|
Development files for %{name}.
|
|
|
|
|
|
%prep
|
|
%autosetup -N
|
|
|
|
%build
|
|
MESON_OPTIONS=(
|
|
# Disable options requiring extra/unpackaged dependencies
|
|
-Dexamples=false
|
|
-Dwerror=false
|
|
)
|
|
%{meson} "${MESON_OPTIONS[@]}"
|
|
%{meson_build}
|
|
|
|
%install
|
|
%{meson_install}
|
|
|
|
%check
|
|
%{meson_test}
|
|
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_libdir}/lib%{name}.so.*
|
|
|
|
|
|
%files devel
|
|
%{_includedir}/scenefx
|
|
%{_libdir}/lib%{name}.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|