You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uglify-js/uglify-js.spec

113 lines
3.1 KiB

%{?nodejs_find_provides_and_requires}
12 years ago
#enable/disable tests in case the deps aren't there
12 years ago
%global enable_tests 1
12 years ago
Name: uglify-js
Version: 2.2.4
12 years ago
Release: 2%{?dist}
12 years ago
Summary: JavaScript parser, mangler/compressor and beautifier toolkit
BuildArch: noarch
Group: Development/Tools
#no license file included; BSD license in source header
License: BSD
URL: https://github.com/mishoo/UglifyJS2
Source0: http://registry.npmjs.org/uglify-js/-/uglify-js-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: nodejs-devel
%if 0%{?enable_tests}
BuildRequires: npm(optimist)
BuildRequires: npm(source-map)
%endif
Requires: %{name}-common == %{version}-%{release}
%description
JavaScript parser, mangler/compressor and beautifier toolkit.
This package ships the uglifyjs command-line tool and a library suitable for
use within Node.js.
%package common
Summary: JavaScript parser, mangler/compressor and beautifier toolkit - core library
Group: System Environment/Libraries
%description common
JavaScript parser, mangler/compressor and beautifier toolkit.
This package ships a JavaScript library suitable for use by any JavaScript
runtime.
%prep
%setup -q -n package
%build
#nothing to do
%install
rm -rf %buildroot
mkdir -p %{buildroot}%{_datadir}/%{name}
cp -pr lib/* %{buildroot}%{_datadir}/%{name}/
mkdir -p %{buildroot}%{nodejs_sitelib}/%{name}
12 years ago
cp -pr bin tools package.json %{buildroot}%{nodejs_sitelib}/%{name}
12 years ago
ln -sf %{_datadir}/%{name} %{buildroot}%{nodejs_sitelib}/%{name}/lib
mkdir -p %{buildroot}%{_bindir}
ln -sf ../lib/node_modules/uglify-js/bin/uglifyjs %{buildroot}%{_bindir}/uglifyjs
#nodejs-symlink-deps is not called because this package does not have any
#dependencies and can be used outside of node
%if 0%{?enable_tests}
%check
12 years ago
mkdir -p node_modules
ln -sf %{nodejs_sitelib}/source-map node_modules/source-map
ln -sf %{nodejs_sitelib}/optimist node_modules/optimist
12 years ago
%__nodejs test/run-tests.js
%endif
%clean
rm -rf %buildroot
%files
%defattr(-,root,root,-)
%{nodejs_sitelib}/%{name}
%{_bindir}/uglifyjs
%files common
%defattr(-,root,root,-)
%{_datadir}/%{name}
%doc README.md
%changelog
12 years ago
* Wed Feb 13 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.4-2
- install tools dir
12 years ago
- enable tests
12 years ago
* Wed Feb 13 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.4-1
- new upstream release 2.2.4
12 years ago
* Fri Feb 01 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-6
- rearrange symlinks so dep generator works
* Fri Feb 01 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-5
- really fix install section
- conditionalize tests
* Thu Jan 31 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-4
- fix install section
* Thu Jan 31 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-3
- split off -common subpackage for use with other runtimes
* Fri Jan 18 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-2
- BuildRequire deps so tests work
* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2.2.3-1
- initial package generated by npm2rpm