package created using the webbuild interface [release 1.1-1mamba;Sat Jul 23 2016]
This commit is contained in:
parent
1cf83f23f1
commit
6348d10162
@ -1,2 +1,3 @@
|
||||
# purpose
|
||||
|
||||
Abstraction to provide and leverage actions of a specific kind
|
||||
|
126
purpose.spec
Normal file
126
purpose.spec
Normal file
@ -0,0 +1,126 @@
|
||||
%define majver %(echo %version | cut -d. -f1-2)
|
||||
|
||||
Name: purpose
|
||||
Version: 1.1
|
||||
Release: 1mamba
|
||||
Summary: KDE Frameworks 5 abstraction to provide and leverage actions of a specific kind
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: http://www.kde.org
|
||||
Source: https://ftp.heanet.ie/mirrors/ftp.kde.org/stable/purpose/purpose-%{version}.tar.xz
|
||||
# Source: http://download.kde.org/stable/frameworks/%{majver}/...-%{version}.tar.xz
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libaccounts-qt5-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libkaccounts-integration-devel
|
||||
BuildRequires: libkconfig-devel
|
||||
BuildRequires: libkcoreaddons-devel
|
||||
BuildRequires: libki18n-devel
|
||||
BuildRequires: libkio-devel
|
||||
BuildRequires: libkservice-devel
|
||||
BuildRequires: libkwidgetsaddons-devel
|
||||
BuildRequires: libqt5-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: cmake
|
||||
BuildRequires: rpm-macros-kde5
|
||||
BuildRequires: extra-cmake-modules
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
Abstraction to provide and leverage actions of a specific kind
|
||||
|
||||
## remove the library block if this package does not provide library and development stuff
|
||||
%package -n lib%{name}
|
||||
Group: System/Libraries
|
||||
Summary: Shared libraries for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description -n lib%{name}
|
||||
This package contains shared libraries for %{name}.
|
||||
|
||||
%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_kde5 -d build
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
%find_lang %{name}5_qt --with-qt --all-name || touch %{name}5_qt.lang
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -n lib%{name}
|
||||
## remove the following line if no dynamic libraries are provided by this package
|
||||
/sbin/ldconfig
|
||||
exit 0
|
||||
|
||||
%postun -n lib%{name}
|
||||
## remove the following line if no dynamic libraries are provided by this package
|
||||
/sbin/ldconfig
|
||||
exit 0
|
||||
|
||||
%files -f %{name}5_qt.lang
|
||||
%defattr(-,root,root)
|
||||
%ifnarch arm
|
||||
%{_datadir}/accounts/services/*.service
|
||||
%else
|
||||
%{_datadir}/accounts/services/kde/*.service
|
||||
%endif
|
||||
%{_datadir}/icons/hicolor/*/apps/reviewboard-purpose.png
|
||||
%{_datadir}/icons/hicolor/*/actions/kipiplugin_youtube.png
|
||||
%dir %{_datadir}/kpackage/Purpose/Twitter
|
||||
%{_datadir}/kpackage/Purpose/Twitter/*
|
||||
%dir %{_datadir}/purpose
|
||||
%{_datadir}/purpose/*
|
||||
%doc COPYING.LIB
|
||||
|
||||
%files -n lib%{name}
|
||||
%defattr(-,root,root)
|
||||
%{_kde5_libdir}/libKF5Purpose.so.*
|
||||
%{_kde5_libdir}/libKF5PurposeWidgets.so.*
|
||||
%{_kde5_libdir}/libKF5Purpose.so
|
||||
%{_kde5_libdir}/libKF5PurposeWidgets.so
|
||||
%{_libdir}/libReviewboardHelpers.so
|
||||
%dir %{_libdir}/qt5/plugins/purpose
|
||||
%{_libdir}/qt5/plugins/purpose/*plugin.so
|
||||
%dir %{_libdir}/qt5/qml/org/kde/purpose
|
||||
%{_libdir}/qt5/qml/org/kde/purpose/*
|
||||
%{_libexecdir}/kf5/purposeprocess
|
||||
|
||||
%files -n lib%{name}-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_kde5_includedir}/purpose
|
||||
%{_kde5_includedir}/purpose/purpose_version.h
|
||||
%dir %{_kde5_includedir}/purpose/Purpose
|
||||
%{_kde5_includedir}/purpose/Purpose/*
|
||||
%dir %{_kde5_includedir}/purpose/purpose
|
||||
%{_kde5_includedir}/purpose/purpose/*
|
||||
%dir %{_kde5_includedir}/purposewidgets
|
||||
%{_kde5_includedir}/purposewidgets/*
|
||||
%dir %{_libdir}/cmake/KDEExperimentalPurpose
|
||||
%{_libdir}/cmake/KDEExperimentalPurpose/KDEExperimentalPurpose*.cmake
|
||||
|
||||
%changelog
|
||||
* Sat Jul 23 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user