nodejs-generate-function/nodejs-generate-function.spec

49 lines
1.3 KiB
RPMSpec
Raw Permalink Normal View History

2020-09-01 10:24:17 +08:00
%global enable_tests 1
%global srcname generate-function
%global commit0 3d5fc8de5859be95f58e3af9bfb5f663edd95149
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
Name: nodejs-%{srcname}
Version: 2.0.0
Release: 1
Summary: Module that helps you write generated functions in Node
License: MIT
URL: https://github.com/mafintosh/generate-function
2020-09-08 10:37:57 +08:00
Source0: https://github.com/mafintosh/generate-function/archive/v%{version}.tar.gz
2020-09-01 10:24:17 +08:00
Source1: https://raw.githubusercontent.com/mafintosh/generate-function/master/LICENSE
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: npm(tape)
%endif
%description
%{summary}.
%prep
2020-09-08 10:37:57 +08:00
%autosetup -n generate-function-%{version}
2020-09-01 10:24:17 +08:00
cp -p %{SOURCE1} .
rm -rf node_modules
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{srcname}
cp -pr package.json index.js \
%{buildroot}%{nodejs_sitelib}/%{srcname}
%nodejs_symlink_deps
%if 0%{?enable_tests}
%check
%nodejs_symlink_deps --check
tape test.js
%endif
%files
%doc README.md example.js
%license LICENSE
%{nodejs_sitelib}/%{srcname}
%changelog
* Fri Aug 28 2020 Anan Fu <fuanan3@huawei.com> - 2.0.0-1
- package init