sfml/sfml.spec

85 lines
2.5 KiB
RPMSpec

Name: sfml
Version: 2.5.0
Release: 1mamba
Summary: Simple and Fast Multimedia Library
Group: System/Multimedia
Vendor: openmamba
Distribution: openmamba
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
URL: https://www.sfml-dev.org/index.php
Source: https://www.sfml-dev.org/files/SFML-%{version}-sources.zip
License: zlib/png license
## AUTOBUILDREQ-BEGIN
## note: run 'autospec -u -a6 sfml' to get the list of build requirements.
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
SFML provides a simple interface to the various components of your PC, to ease the development of games and multimedia applications. It is composed of five modules: system, window, graphics, audio and network.
%package -n lib%{name}
Group: System/Libraries
Summary: Shared libraries for %{name}
%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}
## note: you can add this requirement if .pc files are provided by this package
#Requires: pkg-config
%description -n lib%{name}-devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -n SFML-%{version}
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%ifarch x86_64
mv %{buildroot}%{_prefix}/lib/cmake %{buildroot}%{_libdir}/
%endif
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libsfml-*.so
%{_libdir}/libsfml-*.so.*
%dir %{_libdir}/cmake/SFML
%{_libdir}/cmake/SFML/SFML*.cmake
#%{_datadir}/SFML/cmake/Modules/FindSFML.cmake
%{_datadir}/SFML/license.md
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_includedir}/SFML
%{_includedir}/SFML/*
%{_libdir}/pkgconfig/sfml-*.pc
%{_datadir}/SFML/readme.md
%changelog
* Sat Jun 23 2018 Automatic Build System <autodist@mambasoft.it> 2.5.0-1mamba
- automatic version update by autodist
* Sat Apr 15 2017 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 2.4.2-1mamba
- package created using the webbuild interface