1 Star 0 Fork 1

WangTsing-Yan/perl-File-SearchPath

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
perl-File-SearchPath.spec 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
WangTsing-Yan 提交于 2021-09-22 10:29 . git init
%global _empty_manifest_terminate_build 0
Name: perl-File-SearchPath
Version: 0.07
Release: 1
Summary: Search for a file in an environment variable path
License: GPL+
Group: Development/Libraries
URL: http://search.cpan.org/dist/File-SearchPath/
Source0: http://www.cpan.org/authors/id/T/TJ/TJENNESS/File-SearchPath-%{version}.tar.gz
BuildArch: noarch
BuildRequires: perl-generators
BuildRequires: perl(Env::Path)
BuildRequires: perl(File::Spec) >= 0.8
BuildRequires: perl(Module::Build)
BuildRequires: perl(Test::More)
Requires: perl(Env::Path)
Requires: perl(File::Spec) >= 0.8
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
This module provides the ability to search a path-like environment variable
for a file (that does not necessarily have to be an executable).
%package help
Summary : Search for a file in an environment variable path
Provides: perl-File-SearchPath-doc
%description help
This module provides the ability to search a path-like environment variable
for a file (that does not necessarily have to be an executable).
%prep
%setup -q -n File-SearchPath-%{version}
%build
export PERL_MM_OPT=""
%{__perl} Build.PL --installdirs=vendor
./Build
%install
export PERL_MM_OPT=""
rm -rf $RPM_BUILD_ROOT
./Build install --destdir=$RPM_BUILD_ROOT --create_packlist=0
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
%{_fixperms} $RPM_BUILD_ROOT/*
pushd %{buildroot}
touch filelist.lst
if [ -d usr/bin ];then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ];then
find usr/bin -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/lib ];then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
popd
mv %{buildroot}/filelist.lst .
%check
./Build test
%clean
rm -rf $RPM_BUILD_ROOT
%files -f filelist.lst
%defattr(-,root,root,-)
%doc ChangeLog META.json README
%{perl_vendorlib}/*
%files help
%{_mandir}/*
%changelog
* Fri Oct 15 2021 wangqing <wangqing@uniontech.com> - 0.07-1
- Package init
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/WangTsing-Yan/perl-File-SearchPath.git
git@gitee.com:WangTsing-Yan/perl-File-SearchPath.git
WangTsing-Yan
perl-File-SearchPath
perl-File-SearchPath
master

搜索帮助