nodejs-next-tick/nodejs-next-tick.spec
2020-08-21 17:22:40 +08:00

49 lines
1.1 KiB
RPMSpec

%{?nodejs_find_provides_and_requires}
%global packagename next-tick
%global enable_tests 0
Name: nodejs-next-tick
Version: 0.2.2
Release: 1
Summary: Environment agnostic nextTick polyfill
License: MIT
URL: https://github.com/medikoo/next-tick.git
Source0: https://registry.npmjs.org/next-tick/-/next-tick-%{version}.tgz
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: npm(tad)
%endif
%description
Environment agnostic nextTick polyfill
%prep
%setup -q -n package
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename}
cp -pr package.json *.js \
%{buildroot}%{nodejs_sitelib}/%{packagename}
%nodejs_symlink_deps
%check
%nodejs_symlink_deps --check
%{__nodejs} -e 'require("./")'
%if 0%{?enable_tests}
%{__nodejs} %{nodejs_sitelib}/tad/bin/tad
%else
echo "Tests disabled..."
%endif
%files
%{!?_licensedir:%global license %doc}
%doc *.md
%license LICENCE
%{nodejs_sitelib}/%{packagename}
%changelog
* Thu Aug 20 2020 wangchong <wangchong56@huawei.com> - 0.2.2-1
- package init