Name: nodejs-ansi Version: 0.1.2 Release: 3%{?dist} Summary: ANSI escape codes for Node.js License: MIT Group: System Environment/Libraries URL: https://github.com/TooTallNate/ansi.js Source0: http://registry.npmjs.org/ansi/-/ansi-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: nodejs-devel %description ansi.js is a module for Node.js that provides an easy-to-use API for writing ANSI escape codes to Stream instances. ANSI escape codes are used to do fancy things in a terminal window, like render text in colors, delete characters, lines, the entire window, or hide and show the cursor, and lots more! %prep %setup -q -n package #fix perms in stuff that goes in %%doc chmod 0644 example/* %build #nothing to do %install rm -rf %{buildroot} mkdir -p %{buildroot}%{nodejs_sitelib}/ansi cp -pr lib package.json %{buildroot}%{nodejs_sitelib}/ansi %nodejs_symlink_deps %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{nodejs_sitelib}/ansi %doc README.md examples %changelog * Fri Jan 11 2013 T.C. Hollingsworth - 0.1.2-3 - fix permissions in example * Tue Jan 08 2013 T.C. Hollingsworth - 0.1.2-2 - add missing build section - fix incorrect summary * Fri Apr 27 2012 T.C. Hollingsworth - 0.1.2-1 - New upstream release 0.1.2 * Thu Mar 22 2012 T.C. Hollingsworth - 0.1.0-1 - new upstream release 0.1.0 * Fri Mar 16 2012 T.C. Hollingsworth - 0.0.4-1 - initial package