79 lines
2.0 KiB
RPMSpec
79 lines
2.0 KiB
RPMSpec
%{?nodejs_find_provides_and_requires}
|
|
|
|
%global enable_tests 1
|
|
|
|
Name: nodejs-requirejs
|
|
Version: 2.1.11
|
|
Release: 1
|
|
Summary: Node.js adapter for RequireJS, for loading AMD modules
|
|
License: MIT or BSD
|
|
URL: https://github.com/jrburke/r.js
|
|
Source0: http://registry.npmjs.org/requirejs/-/requirejs-%{version}.tgz
|
|
#git clone git://github.com/jrburke/r.js.git
|
|
#cd r.js
|
|
#git archive --prefix="tests/" --format=tar tags/${tag}:tests/ \
|
|
# | bzip2 > "$pwd"/tests-${tag}.tar.bz2
|
|
#git archive --prefix="build/" --format=tar tags/${tag}:build/ \
|
|
# | bzip2 > "$pwd"/build-${tag}.tar.bz2
|
|
Source1: tests-%{version}.tar.bz2
|
|
Source2: build-%{version}.tar.bz2
|
|
# License is included in upstream version control repository:
|
|
# https://github.com/jrburke/r.js/commits/master/LICENSE
|
|
Source20: LICENSE
|
|
|
|
BuildArch: noarch
|
|
ExclusiveArch: %{nodejs_arches} noarch
|
|
|
|
BuildRequires: nodejs-packaging
|
|
|
|
%description
|
|
RequireJS is a JavaScript file and module loader. It is optimized for
|
|
in-browser use, but it can be used in other JavaScript environments,
|
|
like Rhino and Node. Using a modular script loader like RequireJS will
|
|
improve the speed and quality of your code.
|
|
|
|
|
|
%prep
|
|
%setup -q -n package
|
|
%setup -q -T -D -a 1 -n package
|
|
%setup -q -T -D -a 2 -n package
|
|
cp -p %{SOURCE20} .
|
|
|
|
|
|
%build
|
|
#nothing to do
|
|
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{nodejs_sitelib}/requirejs
|
|
cp -pr package.json require.js \
|
|
%{buildroot}%{nodejs_sitelib}/requirejs
|
|
mkdir -p %{buildroot}%{nodejs_sitelib}/requirejs/bin
|
|
install -p -D -m0755 bin/r.js \
|
|
%{buildroot}%{nodejs_sitelib}/requirejs/bin/r.js
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
ln -s %{nodejs_sitelib}/requirejs/bin/r.js \
|
|
%{buildroot}%{_bindir}/r.js
|
|
|
|
%nodejs_symlink_deps
|
|
|
|
|
|
%if 0%{?enable_tests}
|
|
%check
|
|
pushd tests/
|
|
%__nodejs ../bin/r.js all.js
|
|
popd
|
|
%endif
|
|
|
|
|
|
%files
|
|
%doc LICENSE README.md
|
|
%{nodejs_sitelib}/requirejs
|
|
%{_bindir}/r.js
|
|
|
|
|
|
%changelog
|
|
* Wed Aug 19 2020 wangxiao <wangxiao65@huawei.com> - 2.1.11-1
|
|
- package init
|