Dominik Heidler
45a0c8df3f
I wish to resurrect this package and maintain it in factory OBS-URL: https://build.opensuse.org/request/show/997419 OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/asar?expand=0&rev=3
88 lines
2.8 KiB
RPMSpec
88 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package asar
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: asar
|
|
Version: 3.2.0
|
|
Release: 0
|
|
Summary: Creating atom-shell (electron) app packages
|
|
License: MIT and X11 and ISC and SUSE-WTFPL-2.0 and Apache-2.0 and BSD-3-Clause
|
|
Group: Development/Languages/NodeJS
|
|
Url: https://github.com/electron/asar
|
|
Source0: https://github.com/electron/asar/archive/refs/tags/v%{version}.tar.gz
|
|
# Created by prepare-vendor.sh
|
|
Source1: vendor.tar.zst
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: fdupes
|
|
BuildRequires: nodejs-packaging
|
|
BuildRequires: npm
|
|
BuildRequires: zstd
|
|
%global __requires_exclude ^npm(.*)$
|
|
Provides: nodejs-asar = %{version}
|
|
%description
|
|
Asar is a simple extensive archive format, it works like tar
|
|
that concatenates all files together without compression, while
|
|
having random access support.
|
|
|
|
|
|
%prep
|
|
%autosetup -p1 -a 1
|
|
|
|
%build
|
|
cd node_modules
|
|
npm rebuild --verbose
|
|
|
|
%install
|
|
mkdir -pv %{buildroot}%{nodejs_sitearch}
|
|
mkdir -pv %{buildroot}%{_bindir}
|
|
cp -lr . %{buildroot}%{nodejs_sitearch}/asar
|
|
ln -srv %{buildroot}%{nodejs_sitearch}/asar/bin/asar.js %{buildroot}%{_bindir}/asar
|
|
#fix shebang
|
|
sed -i '1s/env //' %{buildroot}%{nodejs_sitearch}/asar/bin/asar.js
|
|
cd %{buildroot}%{nodejs_sitearch}/asar
|
|
#Remove development garbage
|
|
find -name example -print0 |xargs -r0 -- rm -rvf
|
|
find -name test -print0 |xargs -r0 -- rm -rvf
|
|
find -name typings -print0 |xargs -r0 -- rm -rvf
|
|
find -name @types -print0 |xargs -r0 -- rm -rvf
|
|
find -name .github -print0 |xargs -r0 -- rm -rvf
|
|
find -name .circleci -print0 |xargs -r0 -- rm -rvf
|
|
find -name '*.md' -type f -print -delete
|
|
find -name '*.markdown' -type f -print -delete
|
|
find -name '*.ts' -type f -print -delete
|
|
find -name '.*.yml' -type f -print -delete
|
|
find -name '.*ignore' -type f -print -delete
|
|
find -name 'snapcraft*' -type f -print -delete
|
|
find -name '.git*' -type f -print -delete
|
|
find -name yarn.lock -type f -print -delete
|
|
find -name '.yarn*' -type f -print -delete
|
|
find -name '.releaserc*' -type f -print -delete
|
|
|
|
|
|
%fdupes %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc CHANGELOG.md README.md
|
|
%license LICENSE.md
|
|
/usr/bin/asar
|
|
%{nodejs_sitearch}
|
|
|
|
%changelog |