%{?nodejs_find_provides_and_requires} %global packagename os-homedir %global enable_tests 0 # test disabled until 'ava' is packaged in Fedora Name: nodejs-os-homedir Version: 1.0.1 Release: 2%{?dist} Summary: An io.js 2.3.0 os.homedir() ponyfill License: MIT URL: https://github.com/sindresorhus/os-homedir Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz # The test files are not included in the npm tarball. Source1: https://raw.githubusercontent.com/sindresorhus/os-homedir/v%{version}/test.js ExclusiveArch: %{nodejs_arches} noarch BuildArch: noarch BuildRequires: nodejs-packaging %if 0%{?enable_tests} BuildRequires: ava %endif Requires: nodejs %description An io.js 2.3.0 os.homedir() ponyfill %prep %setup -q -n package # setup the tests cp -p %{SOURCE1} . %build # nothing to do! %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} cp -pr package.json index.js \ %{buildroot}%{nodejs_sitelib}/%{packagename} %nodejs_symlink_deps %if 0%{?enable_tests} %check %nodejs_symlink_deps --check %{__nodejs} -e 'require("./")' %__nodejs test.js %endif %files %{!?_licensedir:%global license %doc} %doc *.md %license license %{nodejs_sitelib}/%{packagename} %changelog * Tue Dec 15 2015 Jared Smith - 1.0.1-2 - Fix up included files * Sun Oct 25 2015 Jared Smith - 1.0.1-1 - Initial packaging