Compare commits
No commits in common. "rawhide" and "f35" have entirely different histories.
5 changed files with 112 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/xde-menu-0.11.tar.gz
|
||||
/xde-menu-0.12.tar.gz
|
||||
3
README.md
Normal file
3
README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# xde-menu
|
||||
|
||||
The xde-menu package
|
||||
|
|
@ -1 +0,0 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
SHA512 (xde-menu-0.12.tar.gz) = dc03cea2682aace564d5cdbca554085caa7da422ce363b991da77c292ab4739d5c25595c26bb2e2a2e95a228baa472fbdd5866529bb3f4de37c03481b4bdaa3e
|
||||
106
xde-menu.spec
Normal file
106
xde-menu.spec
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
# Enable LTO
|
||||
%global optflags %{optflags} -flto
|
||||
%global build_ldflags %{build_ldflags} -flto
|
||||
|
||||
Name: xde-menu
|
||||
Version: 0.12
|
||||
Release: 4%{?dist}
|
||||
Summary: Menu system for the X Desktop Environment
|
||||
|
||||
License: GPLv3+
|
||||
URL: https://github.com/bbidulock/xde-menu
|
||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: pkgconfig(gdk-pixbuf-xlib-2.0)
|
||||
BuildRequires: pkgconfig(gio-2.0)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(gobject-2.0)
|
||||
BuildRequires: pkgconfig(gtk+-2.0) >= 2.4.0
|
||||
BuildRequires: pkgconfig(ice)
|
||||
BuildRequires: pkgconfig(libgnome-menu-3.0)
|
||||
BuildRequires: pkgconfig(libsystemd)
|
||||
BuildRequires: pkgconfig(libwnck-1.0)
|
||||
BuildRequires: pkgconfig(sm)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xau)
|
||||
BuildRequires: pkgconfig(xdmcp)
|
||||
BuildRequires: pkgconfig(xext)
|
||||
BuildRequires: pkgconfig(xft)
|
||||
BuildRequires: pkgconfig(xscrnsaver)
|
||||
|
||||
%description
|
||||
This package provides a number of "C"-language tools for working with the X
|
||||
Desktop Environment. Most of these tools were previously written in perl(1) and
|
||||
were part of the xde-tools package. They have now been codified in "C" for speed
|
||||
and to provide access to libraries not available from perl(1).
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
||||
%build
|
||||
autoreconf -vfi
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
rm %{buildroot}%{_libdir}/%{name}/modules/*.la
|
||||
|
||||
|
||||
%check
|
||||
# https://github.com/bbidulock/xde-menu/issues/5
|
||||
#desktop-file-validate %%{buildroot}%%{_datadir}/applications/*.desktop
|
||||
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc README.md AUTHORS ChangeLog NEWS THANKS
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}-monitor
|
||||
%{_bindir}/%{name}-popmenu
|
||||
%{_bindir}/%{name}-quit
|
||||
%{_bindir}/%{name}-refresh
|
||||
%{_bindir}/%{name}-replace
|
||||
%{_bindir}/%{name}-restart
|
||||
%{_bindir}/xde-menugen
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_datadir}/X11/app-defaults
|
||||
%{_libdir}/%{name}
|
||||
%{_mandir}/man1/*
|
||||
%{_sysconfdir}/xdg/autostart/%{name}.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.12-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Feb 11 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 0.12-1
|
||||
- Update to 0.12
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Sep 05 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 0.11-2
|
||||
- Update to 0.11
|
||||
|
||||
* Wed Sep 04 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 0.10-2
|
||||
- Update to 0.10
|
||||
|
||||
* Fri Aug 30 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 0.9-1
|
||||
- Initial package
|
||||
Reference in a new issue