Blob Blame History Raw
%{?nodejs_find_provides_and_requires}

%global packagename graceful-readlink
%global enable_tests 1
# there is no test suite on this package, but we can still do some self-tests

Name:		nodejs-graceful-readlink
Version:	1.0.1
Release:	1%{?dist}
Summary:	The graceful fs.readlink functionality

License:	MIT
URL:		https://github.com/zhiyelee/graceful-readlink.git
Source0:	https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz

ExclusiveArch:	%{nodejs_arches} noarch
BuildArch:	noarch

BuildRequires:	nodejs-packaging
%if 0%{?enable_tests}
#BuildRequires:
%endif

Requires:	nodejs

%description
The graceful fs.readlink functionality


%prep
%setup -q -n package

%build
# nothing to do!

%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename}
cp -pr package.json *.js \
	%{buildroot}%{nodejs_sitelib}/%{packagename}

%nodejs_symlink_deps

%if 0%{?enable_tests}
%check
%nodejs_symlink_deps --check
# do a quick self-test on the module
%{__nodejs} -e 'require("./")'
%endif


%files
%{!?_licensedir:%global license %doc}
%doc *.md
%license LICENSE
%{nodejs_sitelib}/%{packagename}



%changelog
* Wed Oct 21 2015 Jared Smith <jsmith@fedoraproject.org> - 1.0.1-1
- Initial packaging