85 lines
2.3 KiB
RPMSpec
85 lines
2.3 KiB
RPMSpec
|
|
%global packname stringi
|
||
|
|
%global packver 1.6.2
|
||
|
|
%global rlibdir %{_libdir}/R/library
|
||
|
|
|
||
|
|
Name: R-%{packname}
|
||
|
|
Version: 1.6.2
|
||
|
|
Release: 1
|
||
|
|
Summary: Character String Processing Facilities
|
||
|
|
|
||
|
|
License: BSD
|
||
|
|
URL: https://CRAN.R-project.org/package=%{packname}
|
||
|
|
Source0: https://cran.r-project.org/src/contrib/%{packname}_%{packver}.tar.gz
|
||
|
|
|
||
|
|
BuildRequires: R-devel
|
||
|
|
BuildRequires: tex(latex)
|
||
|
|
BuildRequires: R-tools
|
||
|
|
BuildRequires: R-utils
|
||
|
|
BuildRequires: R-stats
|
||
|
|
BuildRequires: libicu-devel >= 52
|
||
|
|
|
||
|
|
%description
|
||
|
|
A multitude of character string/text/natural language processing tools: pattern
|
||
|
|
searching (e.g., with 'Java'-like regular expressions or the 'Unicode'
|
||
|
|
collation algorithm), random string generation, case mapping, string
|
||
|
|
transliteration, concatenation, sorting, padding, wrapping, Unicode
|
||
|
|
normalisation, date-time formatting and parsing, and many more. They are fast,
|
||
|
|
consistent, convenient, and - owing to the use of the 'ICU' (International
|
||
|
|
Components for Unicode) library - portable across all locales and platforms.
|
||
|
|
|
||
|
|
|
||
|
|
%package devel
|
||
|
|
Summary: Development files for %{name}
|
||
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||
|
|
|
||
|
|
%description devel
|
||
|
|
Development files for %{name}.
|
||
|
|
|
||
|
|
|
||
|
|
%prep
|
||
|
|
%setup -q -c -n %{packname}
|
||
|
|
|
||
|
|
rm -r %{packname}/src/icu69/
|
||
|
|
sed -i -e '/src\/icu69\//d' %{packname}/MD5
|
||
|
|
|
||
|
|
|
||
|
|
%build
|
||
|
|
|
||
|
|
|
||
|
|
%install
|
||
|
|
mkdir -p %{buildroot}%{rlibdir}
|
||
|
|
%{_bindir}/R CMD INSTALL -l %{buildroot}%{rlibdir} %{packname} \
|
||
|
|
--configure-args="--disable-icu-bundle"
|
||
|
|
test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so)
|
||
|
|
rm -f %{buildroot}%{rlibdir}/R.css
|
||
|
|
|
||
|
|
|
||
|
|
%check
|
||
|
|
%{_bindir}/R CMD check %{packname}
|
||
|
|
|
||
|
|
|
||
|
|
%files
|
||
|
|
%dir %{rlibdir}/%{packname}
|
||
|
|
%doc %{rlibdir}/%{packname}/html
|
||
|
|
%doc %{rlibdir}/%{packname}/AUTHORS
|
||
|
|
%doc %{rlibdir}/%{packname}/CITATION
|
||
|
|
%license %{rlibdir}/%{packname}/LICENSE
|
||
|
|
%{rlibdir}/%{packname}/DESCRIPTION
|
||
|
|
%doc %{rlibdir}/%{packname}/NEWS
|
||
|
|
%{rlibdir}/%{packname}/INDEX
|
||
|
|
%{rlibdir}/%{packname}/NAMESPACE
|
||
|
|
%{rlibdir}/%{packname}/Meta
|
||
|
|
%{rlibdir}/%{packname}/R
|
||
|
|
%{rlibdir}/%{packname}/help
|
||
|
|
%dir %{rlibdir}/%{packname}/libs
|
||
|
|
%{rlibdir}/%{packname}/libs/%{packname}.so
|
||
|
|
|
||
|
|
|
||
|
|
%files devel
|
||
|
|
%{rlibdir}/%{packname}/include
|
||
|
|
|
||
|
|
|
||
|
|
%changelog
|
||
|
|
* Thu Jun 16 2022 misaka00251 <misaka00251@misakanet.cn> - 1.6.2-1
|
||
|
|
- Init package (Thanks to fedora team)
|