12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Name: slop
- Version: __APP_VERSION__
- Release: __APP_RELEASE__
- 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
-
- Requires: libslopy = %{version}-%{release}
- %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
- Group: System Environment/Libraries
- %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
- Group: Development/Libraries
- Requires: libslopy = %{version}-%{release}
- %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
- CXXFLAGS="${CXXFLAGS:-%{optflags}}"; export CXXFLAGS
- cmake -DCMAKE_INSTALL_PREFIX="/usr" ./
-
- %install
- %make_install
-
- %post -n libslopy
- /sbin/ldconfig
-
- %postun -n libslopy
- /sbin/ldconfig
-
- %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__
|