You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.3 KiB
62 lines
1.3 KiB
4 years ago
|
Name: librttopo
|
||
|
Version: 1.1.0
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Create and manage SQL/MM topologies
|
||
|
|
||
|
License: GPLv2+
|
||
|
URL: https://git.osgeo.org/gitea/rttopo/librttopo
|
||
|
Source0: https://git.osgeo.org/gitea/rttopo/librttopo/archive/%{name}-%{version}.tar.gz
|
||
|
|
||
|
BuildRequires: autoconf
|
||
|
BuildRequires: automake
|
||
|
BuildRequires: gcc
|
||
|
BuildRequires: geos-devel
|
||
|
BuildRequires: libtool
|
||
|
BuildRequires: make
|
||
|
|
||
|
|
||
|
%description
|
||
|
The RT Topology Library exposes an API to create and manage standard
|
||
|
(ISO 13249 aka SQL/MM) topologies using user-provided data stores.
|
||
|
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development files for %{name}
|
||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||
|
|
||
|
%description devel
|
||
|
The %{name}-devel package contains libraries and header files for
|
||
|
developing applications that use %{name}.
|
||
|
|
||
|
|
||
|
%prep
|
||
|
%autosetup -p1 -n %{name}
|
||
|
|
||
|
|
||
|
%build
|
||
|
autoreconf -ifv
|
||
|
%configure --disable-static
|
||
|
%make_build
|
||
|
|
||
|
|
||
|
%install
|
||
|
%make_install
|
||
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||
|
|
||
|
|
||
|
%files
|
||
|
%license COPYING
|
||
|
%doc CREDITS NEWS.md README.md TODO
|
||
|
%{_libdir}/%{name}.so.*
|
||
|
|
||
|
%files devel
|
||
|
%{_includedir}/%{name}.h
|
||
|
%{_includedir}/%{name}_geom.h
|
||
|
%{_libdir}/%{name}.so
|
||
|
%{_libdir}/pkgconfig/rttopo.pc
|
||
|
|
||
|
|
||
|
%changelog
|
||
|
* Fri Nov 13 2020 Sandro Mani <manisandro@gmail.com> 1.1.0-1
|
||
|
- Initial package
|