package init

This commit is contained in:
small_leek 2020-07-31 15:42:38 +08:00
parent fb14ccab77
commit 170e030f38
3 changed files with 92 additions and 0 deletions

Binary file not shown.

88
double-conversion.spec Normal file
View File

@ -0,0 +1,88 @@
%bcond_without static_libs # don't build static libraries
Summary: Library providing binary-decimal and decimal-binary routines for IEEE doubles
Name: double-conversion
Version: 3.1.5
Release: 1
License: BSD
URL: https://github.com/google/double-conversion
Source0: https://github.com/google/double-conversion/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc gcc-c++ cmake
%description
Provides binary-decimal and decimal-binary routines for IEEE doubles.
The library consists of efficient conversion routines that have been
extracted from the V8 JavaScript engine. The code has been re-factored
and improved so that it can be used more easily in other projects.
%package devel
Summary: Library providing binary-decimal and decimal-binary routines for IEEE doubles
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
Contains header files for developing applications that use the %{name}
library.
There is extensive documentation in src/double-conversion.h. Other
examples can be found in test/cctest/test-conversions.cc.
%package static
Summary: Library providing binary-decimal and decimal-binary routines for IEEE doubles
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
%description static
Static %{name} library.
%prep
%setup -q
%build
mkdir -p build-shared
pushd build-shared
%cmake -DBUILD_TESTING=ON ..
make %{_smp_mflags}
popd
%if %{with static_libs}
mkdir -p build-static
pushd build-static
CXXFLAGS="%{optflags} -fPIC" %cmake -DBUILD_SHARED_LIBS=NO ..
make %{_smp_mflags}
popd
%endif
%install
%if %{with static_libs}
pushd build-static
make install DESTDIR=%{buildroot}
popd
%endif
pushd build-shared
make install DESTDIR=%{buildroot}
popd
%check
pushd build-shared
ctest -V
popd
%ldconfig_scriptlets
%files
%doc LICENSE README.md AUTHORS Changelog
%{_libdir}/libdouble-conversion.so.3*
%files devel
%{_libdir}/libdouble-conversion.so
%{_libdir}/cmake/%{name}
%{_includedir}/%{name}
%if %{with static_libs}
%files static
%{_libdir}/libdouble-conversion.a
%endif
%changelog
* Thu Jul 23 2020 chengzihan <chengzihan2@huawei.com> - 3.1.5-1
- Package init

4
double-conversion.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: google/double-conversion
tag_prefix: "v"
seperator: "."