Created
January 6, 2012 20:45
-
-
Save splaice/1572336 to your computer and use it in GitHub Desktop.
RPM spec file for node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%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 <[email protected]> 0.4.6-1 | |
- Initial rpm using upstream v0.4.6 | |
* Fri Jan 06 2012 Sean Plaice <[email protected]> 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