nodejs-isexe/nodejs-isexe.spec

49 lines
1.2 KiB
RPMSpec
Raw Normal View History

2020-08-20 19:47:50 +08:00
%{?nodejs_find_provides_and_requires}
%global packagename isexe
%global enable_tests 0
Name: nodejs-isexe
Version: 2.0.0
Release: 1
Summary: Minimal module to check if a file is executable
License: ISC
URL: https://github.com/isaacs/isexe
2020-09-07 16:33:18 +08:00
Source0: https://github.com/isaacs/isexe/archive/v%{version}.tar.gz
2020-08-20 19:47:50 +08:00
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: npm(mkdirp) npm(rimraf) npm(tap)
%endif
%description
Minimal module to check if a file is executable.
%prep
2020-09-07 16:33:18 +08:00
%autosetup -n isexe-%{version}
2020-08-20 19:47:50 +08:00
%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}
%{_bindir}/tap test/*.js
%else
%{_bindir}/echo "Tests disabled..."
%endif
%files
%{!?_licensedir:%global license %doc}
%doc *.md
%license LICENSE
%{nodejs_sitelib}/%{packagename}
%changelog
* Thu Aug 20 2020 wangxiao <wangxiao65@huawei.com> - 2.0.0-1
- package init