File uglify-js_3.19.3-1.spec of Package mishoo-UglifyJS-3.19.3
# Copyright 2025 Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
%global debug_package %{nil}
%global source_date_epoch_from_changelog 0
# macro to filter unwanted provides from Node.js binary native modules
%nodejs_default_filter
Name: uglify-js
Epoch: 100
Version: 3.19.3
Release: 1%{?dist}
BuildArch: noarch
Summary: JavaScript parser / mangler / compressor / beautifier toolkit
License: BSD-3-Clause
URL: https://github.com/mishoo/UglifyJS/tags
Source0: %{name}_%{version}.orig.tar.gz
BuildRequires: fdupes
BuildRequires: nodejs-packaging
Provides: uglifyjs = %{epoch}:%{version}-%{release}
%description
UglifyJS is a JavaScript parser, minifier, compressor and beautifier
toolkit.
%prep
%autosetup -T -c -n %{name}_%{version}-%{release}
tar -zx -f %{S:0} --strip-components=1 -C .
%build
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{nodejs_sitelib}
cp -rfT node_modules %{buildroot}%{nodejs_sitelib}
pushd %{buildroot}%{_bindir} && \
ln -fs %{nodejs_sitelib}/uglify-js/bin/uglifyjs uglifyjs && \
popd
chmod a+x %{buildroot}%{nodejs_sitelib}/uglify-js/bin/uglifyjs
fdupes -qnrps %{buildroot}%{nodejs_sitelib}
%check
%files
%license LICENSE
%dir %{nodejs_sitelib}
%{_bindir}/*
%{nodejs_sitelib}/*
%changelog