diff --git a/nodejs-window-size.spec b/nodejs-window-size.spec new file mode 100644 index 0000000..50f788c --- /dev/null +++ b/nodejs-window-size.spec @@ -0,0 +1,47 @@ +%{?nodejs_find_provides_and_requires} + +%global barename window-size + +Name: nodejs-window-size +Version: 0.1.0 +Release: 1 +Summary: Get the height and width of the terminal in a node.js environment + +License: MIT +URL: https://www.npmjs.org/package/window-size +Source0: http://registry.npmjs.org/window-size/-/window-size-%{version}.tgz +BuildArch: noarch +ExclusiveArch: %{nodejs_arches} noarch + +BuildRequires: nodejs-packaging >= 6 + +%description +Reliable way to to get the height and width of the terminal/console in a +node.js environment. + +%prep +%setup -q -n package + +# Remove bundled node_modules if there are any.. +rm -rf node_modules/ + +%nodejs_fixdep --caret + +%build +%nodejs_symlink_deps --build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/window-size +cp -pr package.json index.js \ + %{buildroot}%{nodejs_sitelib}/window-size + +%nodejs_symlink_deps + +%files +%license LICENSE-MIT +%doc README.md +%{nodejs_sitelib}/window-size/ + +%changelog +* Tue Aug 11 2020 wangxiao - 0.1.0-1 +- package init diff --git a/nodejs-window-size.yaml b/nodejs-window-size.yaml new file mode 100644 index 0000000..565ffdf --- /dev/null +++ b/nodejs-window-size.yaml @@ -0,0 +1,5 @@ +git_url: https://github.com/jonschlinkert/window-size +version_control: github +src_repo: jonschlinkert/window-size +tag_prefix: "" +seperator: "." diff --git a/window-size-0.1.0.tgz b/window-size-0.1.0.tgz new file mode 100644 index 0000000..515b5a7 Binary files /dev/null and b/window-size-0.1.0.tgz differ