automatic version update by autodist [release 5.9.0-1mamba;Sat Apr 18 2015]
This commit is contained in:
parent
e57e17a7b1
commit
df5ade1f1f
@ -1,2 +1,4 @@
|
|||||||
# kxmlgui
|
# kxmlgui
|
||||||
|
|
||||||
|
KXMLGUI provides a framework for managing menu and toolbar actions in an abstract way. The actions are configured through a XML description and hooks in the application code. The framework supports merging of multiple description for example for integrating actions from plugins.
|
||||||
|
|
||||||
|
107
kxmlgui.spec
Normal file
107
kxmlgui.spec
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
%define majver %(echo %version | cut -d. -f1-2)
|
||||||
|
Name: kxmlgui
|
||||||
|
Version: 5.9.0
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: Framework for managing menu and toolbar actions
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://www.kde.org
|
||||||
|
Source: http://download.kde.org/stable/frameworks/%{majver}/kxmlgui-%{version}.tar.xz
|
||||||
|
License: GPL
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: kconfig-devel
|
||||||
|
BuildRequires: libattica5-devel
|
||||||
|
BuildRequires: libgcc
|
||||||
|
BuildRequires: libkauth-devel
|
||||||
|
BuildRequires: libkcodecs-devel
|
||||||
|
BuildRequires: libkconfigwidgets-devel
|
||||||
|
BuildRequires: libkcoreaddons-devel
|
||||||
|
BuildRequires: libkglobalaccel-devel
|
||||||
|
BuildRequires: libki18n-devel
|
||||||
|
BuildRequires: libkiconthemes-devel
|
||||||
|
BuildRequires: libkitemviews-devel
|
||||||
|
BuildRequires: libktextwidgets-devel
|
||||||
|
BuildRequires: libkwidgetsaddons-devel
|
||||||
|
BuildRequires: libkwindowsystem-devel
|
||||||
|
BuildRequires: libqt5-devel
|
||||||
|
BuildRequires: libsonnet-devel
|
||||||
|
BuildRequires: libstdc++6-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: cmake
|
||||||
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
KXMLGUI provides a framework for managing menu and toolbar actions in an abstract way. The actions are configured through a XML description and hooks in the application code. The framework supports merging of multiple description for example for integrating actions from plugins.
|
||||||
|
|
||||||
|
%package -n lib%{name}
|
||||||
|
Group: System/Libraries
|
||||||
|
Summary: Framework for managing menu and toolbar actions
|
||||||
|
|
||||||
|
%description -n lib%{name}
|
||||||
|
KXMLGUI provides a framework for managing menu and toolbar actions in an abstract way. The actions are configured through a XML description and hooks in the application code. The framework supports merging of multiple description for example for integrating actions from plugins.
|
||||||
|
|
||||||
|
%package -n lib%{name}-devel
|
||||||
|
Group: Development/Libraries
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description -n lib%{name}-devel
|
||||||
|
This package contains libraries and header files for developing applications that use %{name}.
|
||||||
|
|
||||||
|
%debug_package
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake -d build
|
||||||
|
%make
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall -C build
|
||||||
|
|
||||||
|
%find_lang kxmlgui5
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%post -n lib%{name} -p /sbin/ldconfig
|
||||||
|
%postun -n lib%{name} -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files -n lib%{name} -f kxmlgui5.lang
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/xdg/ui/ui_standards.rc
|
||||||
|
%{_libdir}/libKF5XmlGui.so.*
|
||||||
|
%{_libdir}/libexec/kf5/ksendbugmail
|
||||||
|
%dir %{_datadir}/kf5/kxmlgui/pics
|
||||||
|
%{_datadir}/kf5/kxmlgui/pics/*
|
||||||
|
%doc COPYING COPYING.LIB
|
||||||
|
|
||||||
|
%files -n lib%{name}-devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%dir %{_includedir}/KF5/KXmlGui
|
||||||
|
%{_includedir}/KF5/KXmlGui/*
|
||||||
|
%{_includedir}/KF5/kxmlgui_version.h
|
||||||
|
%dir %{_libdir}/cmake/KF5XmlGui
|
||||||
|
%{_libdir}/cmake/KF5XmlGui/KF5XmlGui*.cmake
|
||||||
|
%{_libdir}/libKF5XmlGui.so
|
||||||
|
/usr/mkspecs/modules/qt_KXmlGui.pri
|
||||||
|
%doc README.md
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Apr 18 2015 Automatic Build System <autodist@mambasoft.it> 5.9.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Mar 25 2015 Automatic Build System <autodist@mambasoft.it> 5.8.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Mar 06 2015 Automatic Build System <autodist@mambasoft.it> 5.7.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Feb 14 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.6.0-1mamba
|
||||||
|
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user