Compare commits
10 Commits
1ee29e73f5
...
af6b2cf90e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af6b2cf90e | ||
|
|
ece77f55a5 | ||
|
|
a093e2615d | ||
|
|
39e9775302 | ||
|
|
af2ce7a73e | ||
|
|
4de7e6236b | ||
|
|
5519379962 | ||
|
|
def61a91ea | ||
|
|
57c328dec1 | ||
|
|
76b899839f |
33
mutter.spec
33
mutter.spec
@ -1,6 +1,7 @@
|
|||||||
|
%define chrpath_delete() (find $RPM_BUILD_ROOT/ -type f -exec file {} ';' | grep -W "ELF" | awk -F ':' '{print $1}' | xargs -i chrpath --delete {})
|
||||||
Name: mutter
|
Name: mutter
|
||||||
Version: 3.38.4
|
Version: 3.38.4
|
||||||
Release: 4
|
Release: 9
|
||||||
Summary: Window and compositing manager based on Clutter
|
Summary: Window and compositing manager based on Clutter
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://www.gnome.org
|
URL: https://www.gnome.org
|
||||||
@ -18,9 +19,10 @@ BuildRequires: libinput-devel
|
|||||||
BuildRequires: pkgconfig(graphene-gobject-1.0) pkgconfig(libpipewire-0.3) >= 0.3.0
|
BuildRequires: pkgconfig(graphene-gobject-1.0) pkgconfig(libpipewire-0.3) >= 0.3.0
|
||||||
BuildRequires: gnome-settings-daemon-devel meson
|
BuildRequires: gnome-settings-daemon-devel meson
|
||||||
BuildRequires: pkgconfig(wayland-eglstream) xorg-x11-server-Xwayland
|
BuildRequires: pkgconfig(wayland-eglstream) xorg-x11-server-Xwayland
|
||||||
%ifarch riscv64
|
BuildRequires: cvt
|
||||||
BuildRequires: pkgconfig(libdrm)
|
|
||||||
BuildRequires: pkgconfig(sysprof-capture-4)
|
BuildRequires: pkgconfig(sysprof-capture-4)
|
||||||
|
%ifarch riscv64 loongarch64
|
||||||
|
BuildRequires: pkgconfig(libdrm)
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Obsoletes: mutter-wayland < 3.13.0
|
Obsoletes: mutter-wayland < 3.13.0
|
||||||
@ -56,6 +58,8 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%meson_install
|
%meson_install
|
||||||
|
%chrpath_delete
|
||||||
|
|
||||||
%delete_la_and_a
|
%delete_la_and_a
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
@ -63,7 +67,11 @@ developing applications that use %{name}.
|
|||||||
desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
|
desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
|
||||||
|
|
||||||
mkdir -p %{buildroot}/etc/ld.so.conf.d
|
mkdir -p %{buildroot}/etc/ld.so.conf.d
|
||||||
|
%ifarch sw_64
|
||||||
|
echo "/usr/lib/mutter-7" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
||||||
|
%else
|
||||||
echo "/usr/lib64/mutter-7" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
echo "/usr/lib64/mutter-7" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
||||||
|
%endif
|
||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
@ -96,8 +104,23 @@ echo "/usr/lib64/mutter-7" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
|
|||||||
%{_mandir}/man1/*.1.gz
|
%{_mandir}/man1/*.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jan 12 2022 lvxiaoqian <xiaoqian@nj.iscas.ac.cn> - 3.38.4-4
|
* Mon Feb 19 2024 hanhuihui <hanhuihui5@huawei.com> - 3.38.4-9
|
||||||
- add BuildRequires for riscv
|
- rebuild for glib2 without sysprof and add requires sysprof-capture-4
|
||||||
|
|
||||||
|
* Wed Dec 06 2023 Paul Tohmas <relpeace@yeah.net> - 3.38.4-8
|
||||||
|
- remove rpath
|
||||||
|
|
||||||
|
* Tue Dec 14 2022 wuzx <wuzx1226@qq.com> - 3.38.4-7
|
||||||
|
- Add sw64 architecture
|
||||||
|
|
||||||
|
* Tue Dec 13 2022 huajingyun <huajingyun@loongson.cn> - 3.38.4-6
|
||||||
|
- add BuildRequires for loongarch64
|
||||||
|
|
||||||
|
* Wed Aug 10 2022 Wenlong Ding <wenlong.ding@turbolinux.com.cn> - 3.38.4-5
|
||||||
|
- add BuildRequires for riscv from <xiaoqian@nj.iscas.ac.cn> @ Wed Jan 12 2022
|
||||||
|
|
||||||
|
* Wed Aug 10 2022 Wenlong Ding <wenlong.ding@turbolinux.com.cn> - 3.38.4-4
|
||||||
|
- Add BuildRequires cvt
|
||||||
|
|
||||||
* Thu Sep 16 2021 weijin deng <weijin.deng@turbolinux.com.cn> - 3.38.4-3
|
* Thu Sep 16 2021 weijin deng <weijin.deng@turbolinux.com.cn> - 3.38.4-3
|
||||||
- Add concrete dynamic library search path
|
- Add concrete dynamic library search path
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user