SHA256
1
0
forked from pool/laszip
laszip/laszip.spec

125 lines
4.4 KiB
RPMSpec
Raw Normal View History

#
# spec file for package laszip
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2014 Ioda-Net Sàrl, Charmoille, Switzerland. Bruno Friedmann (tigerfoot)
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: laszip
Version: 2.2.0
Release: 0
Summary: Compression library supporting ASPRS LAS format data
License: LGPL-2.1+
Group: Development/Libraries/C and C++
Url: http://www.laszip.org/
Source0: https://github.com/LASzip/LASzip/releases/download/v%{version}/laszip-src-%{version}.tar.bz2
# Upstream issue pull request Update COPYING #10 on 2014-08-21
Source2: lgpl-2.1.txt
BuildRequires: gcc-c++
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A free product of rapidlasso GmbH - quickly turns bulky LAS files into
compact LAZ files without information loss. LASzip is a compression library that
was developed by Martin Isenburg for compressing ASPRS LAS format data in his
LAStools. It has been provided as an LGPL-licensed stand-alone software library
to allow other softwares that handle LAS data to read and write LASzip-compressed
data. The BSD-licensed libLAS and the LGPL-licensed LASlib can take advantage of
LASzip to read and write compressed data.
%package test
Summary: Test for %{name}
Group: Development/Libraries/C and C++
%description test
A free product of rapidlasso GmbH - quickly turns bulky LAS files into
compact LAZ files without information loss. LASzip is a compression library that
was developed by Martin Isenburg for compressing ASPRS LAS format data in his
LAStools. It has been provided as an LGPL-licensed stand-alone software library
to allow other softwares that handle LAS data to read and write LASzip-compressed
data. The BSD-licensed libLAS and the LGPL-licensed LASlib can take advantage of
LASzip to read and write compressed data.
This package contain only the laszippertest tool
%package -n lib%{name}6
Summary: Library files for %{name}
Group: System/Libraries
%description -n lib%{name}6
A free product of rapidlasso GmbH - quickly turns bulky LAS files into
compact LAZ files without information loss. LASzip is a compression library that
was developed by Martin Isenburg for compressing ASPRS LAS format data in his
LAStools. It has been provided as an LGPL-licensed stand-alone software library
to allow other softwares that handle LAS data to read and write LASzip-compressed
data. The BSD-licensed libLAS and the LGPL-licensed LASlib can take advantage of
LASzip to read and write compressed data.
This package contain only the dynamic build.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries/C and C++
Requires: lib%{name}6 = %{version}
%description devel
Headers and development files for %{name} needed to develop
softwares that handle LAS data to read and write LASzip-compressed
data.
%prep
%setup -q -n laszip-src-%{version}
sed -i 's/-O3//g' ./configure
cp -f %{SOURCE2} COPYING
%build
export CFLAGS="%{optflags} -fno-strict-aliasing -fPIE -pie"
export CXXFLAGS="%{optflags} -fno-strict-aliasing -fPIE -pie"
export LDFLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now -pie"
%configure
make %{?_smp_mflags}
%install
%make_install
# Do not ship any static libraries or .la files
find %{buildroot} -type f \( -name '*.a' -o -name '*.la' \) -delete -print
%check
make %{?_smp_mflags} check
%post -n lib%{name}6 -p /sbin/ldconfig
%postun -n lib%{name}6 -p /sbin/ldconfig
%files devel
%defattr(-,root,root)
%doc ChangeLog AUTHORS COPYING
%{_includedir}/lasunzipper.hpp
%{_includedir}/laszip.hpp
%{_includedir}/laszipexport.hpp
%{_includedir}/laszipper.hpp
%{_libdir}/lib%{name}.so
%files test
%defattr(-,root,root)
%doc ChangeLog AUTHORS COPYING
%{_bindir}/laszippertest
%files -n lib%{name}6
%defattr(-,root,root)
%doc ChangeLog AUTHORS COPYING
%{_libdir}/lib%{name}.so.*
%changelog