| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | Name:       slop
Version:    __APP_VERSION__
Release:    __APP_RELEASE__%{?dist}
Summary:    Select Operation
URL:        https://github.com/naelstrof/slop
License:    GPLv3
Source0:    __APP_URLBASE__/archive/v%{version}.tar.gz
BuildRequires: gcc-c++ >= 4.9
BuildRequires: cmake
BuildRequires: glew-devel
BuildRequires: glm-devel
BuildRequires: libicu-devel
BuildRequires: libXrender-devel
BuildRequires: mesa-libEGL-devel
%description
slop (Select Operation) is an application that queries for a selection
from the user and prints the region to stdout.
%package -n libslopy
Summary: Select Operation
%description -n libslopy
slop (Select Operation) is an application that queries for a selection
from the user and prints the region to stdout.
This sub-package contains libslopy library.
%package -n libslopy-devel
Summary:    Select Operation
%description -n libslopy-devel
slop (Select Operation) is an application that queries for a selection
from the user and prints the region to stdout.
This sub-package contains development files for libslopy library.
%prep
%autosetup -n %{name}-%{version}
%build
%cmake .
%install
%make_install
%check
ctest -V %{?_smp_mflags}
%files
%{_bindir}/slop
%{_mandir}/man1/slop.1.gz
%files -n libslopy
%{_libdir}/libslopy.so.%{version}
%files -n libslopy-devel
%{_libdir}/libslopy.so
%{_includedir}/slop.hpp
%changelog
* __APP_DATE__ Alois Mahdal <netvor+slop@vornet.cz> - __APP_VERSION__-__APP_RELEASE__
- Unofficial experimental RPM pseudo-release
# spec file generated from __APP_BUILDSCRIPT_VERSION__
 |