nodejsporter/nodejsporter.spec
2020-11-30 15:05:31 +08:00

60 lines
1.5 KiB
RPMSpec

Name: nodejsporter
Version: 1.0
Release: 1
Summary: A rpm packager bot for nodejs modules from npmjs.org
License: Mulan PSL v2
URL: https://gitee.com/openeuler/nodejsporter
Source0: https://gitee.com/openeuler/rubyporter/repository/archive/v%{version}.tar.gz
BuildArch: noarch
%description
nodejsporter is a tool to create spec file and create rpm for nodejs modules.
BuildRequires: gcc gdb libstdc++-devel python3-cffi nodejs
Requires: gcc gdb libstdc++-devel python3-cffi nodejs
%package -n python3-nodejsporter
Summary: A rpm packager bot for nodejs modules from npmjs.org
%description -n python3-nodejsporter
nodejsporter is a tool to create spec file and create rpm for nodejs modules.
%prep
%autosetup -n nodejsporter -p1
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
popd
mv %{buildroot}/filelist.lst .
%files -n python3-nodejsporter -f filelist.lst
%license LICENSE
%doc README.md
%dir %{python3_sitelib}/*
%changelog
* Wed Nov 4 2020 sunchendong<sunchendong@huawei.com> -1.0-1
- Type:NA
- ID:NA
- SUG:NA
- DESC:init package