Skip to content

Instantly share code, notes, and snippets.

@splaice
Created January 6, 2012 20:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save splaice/1572336 to your computer and use it in GitHub Desktop.
Save splaice/1572336 to your computer and use it in GitHub Desktop.
RPM spec file for node
%define ver 0.6.6
%define rel 1
%define jobs 2
Name: nodejs
Version: %{ver}
Release: %{rel}
Summary: Node's goal is to provide an easy way to build scalable network programs.
Group: Applications/Internet
License: Copyright Joyent, Inc. and other Node contributors.
URL: http://nodejs.org
Source0: http://nodejs.org/dist/node-v%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python >= 2.4
%description
Node.js is a server-side JavaScript environment that uses an asynchronous
event-driven model. This allows Node.js to get excellent performance based on
the architectures of many Internet applications.
%prep
%setup -q -n node-v%{version}
%build
export JOBS=%{jobs}
./configure --prefix=/usr
make
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog LICENSE README.md
/usr/bin/node
/usr/bin/npm
/usr/bin/node-waf
/usr/include/node
/usr/lib/node
/usr/lib/node_modules
/usr/share/man/man1/node.1.gz
%changelog
* Thu Apr 14 2011 Chris Abernethy <cabernet@chrisabernethy.com> 0.4.6-1
- Initial rpm using upstream v0.4.6
* Fri Jan 06 2012 Sean Plaice <splaice@gmail.com> 0.6.6-1
- Update spec to use v0.6.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment