diff --git a/BH_1.78.0-0.tar.gz b/BH_1.78.0-0.tar.gz new file mode 100644 index 0000000..ddd9115 Binary files /dev/null and b/BH_1.78.0-0.tar.gz differ diff --git a/R-BH.spec b/R-BH.spec new file mode 100644 index 0000000..7762a09 --- /dev/null +++ b/R-BH.spec @@ -0,0 +1,66 @@ +%global packname BH +%global packver 1.78.0 +%global packrel 0 + +Name: R-%{packname} +Version: %{packver}.%{packrel} +Release: 1 +Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}-%{packrel}.tar.gz +License: Boost +URL: https://cran.r-project.org/package=%{packname} +Summary: Boost C++ Header Files for R +BuildRequires: R-devel >= 3.0.0, tetex-latex +BuildArch: noarch + +%description +Boost provides free peer-reviewed portable C++ source libraries. A large part +of Boost is provided as C++ template code which is resolved entirely at +compile-time without linking. This package aims to provide the most useful +subset of Boost libraries for template use among CRAN package. By placing +these libraries in this package, we offer a more efficient distribution +system for CRAN as replication of this code in the sources of other packages +is avoided. + +%package devel +Summary: Boost C++ Header Files for R + +%description devel +Boost provides free peer-reviewed portable C++ source libraries. A large part +of Boost is provided as C++ template code which is resolved entirely at +compile-time without linking. This package aims to provide the most useful +subset of Boost libraries for template use among CRAN package. By placing +these libraries in this package, we offer a more efficient distribution +system for CRAN as replication of this code in the sources of other packages +is avoided. + +%prep +%setup -q -c -n %{packname} +# Remove spurious exec permissions +for i in `find %{packname}/inst/include/boost |grep hpp`; do chmod -x $i; done + +%build + +%install +mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library +%{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} +test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) +rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css + +%check +%{_bindir}/R CMD check %{packname} + +%files devel +%license %{_datadir}/R/library/%{packname}/LICENSE_1_0.txt +%dir %{_datadir}/R/library/%{packname} +%doc %{_datadir}/R/library/%{packname}/html +%{_datadir}/R/library/%{packname}/NEWS.Rd +%{_datadir}/R/library/%{packname}/DESCRIPTION +%{_datadir}/R/library/%{packname}/INDEX +%{_datadir}/R/library/%{packname}/NAMESPACE +%{_datadir}/R/library/%{packname}/Meta +%{_datadir}/R/library/%{packname}/help +%{_datadir}/R/library/%{packname}/include + +%changelog +* Thu Jun 16 2022 misaka00251 - 1.78.0.0-1 +- Init package (Thanks to fedora team)