-
Notifications
You must be signed in to change notification settings - Fork 35
/
MogileFS-Utils.spec
55 lines (45 loc) · 1.26 KB
/
MogileFS-Utils.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: MogileFS-Utils
summary: MogileFS-Utils - MogileFS utilities.
version: 2.17
release: 1%{?dist}
vendor: Alan Kasindorf <[email protected]>
packager: Jonathan Steinert <[email protected]>
license: Artistic
group: Applications/CPAN
buildroot: %{_tmppath}/%{name}-%{version}-%(id -u -n)
buildarch: noarch
source: MogileFS-Utils-%{version}.tar.gz
autoreq: no
requires: perl
requires: perl(MogileFS::Client) >= 1.10
requires: perl(Compress::Zlib)
%description
MogileFS utilities.
%prep
rm -rf "%{buildroot}"
%setup -n MogileFS-Utils-%{version}
%build
%{__perl} Makefile.PL PREFIX=%{buildroot}%{_prefix}
make all
make test
%install
make pure_install
[ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress
# remove special files
find %{buildroot} \( \
-name "perllocal.pod" \
-o -name ".packlist" \
-o -name "*.bs" \
\) -exec rm -f {} \;
# no empty directories
find %{buildroot}%{_prefix} \
-type d -depth -empty \
-exec rmdir {} \;
%clean
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
%files
%defattr(-,root,root)
%{_prefix}/bin/*
%{_prefix}/share/man/man1/*
%{_prefix}/share/man/man3/*
%{_prefix}/lib/perl5/site_perl/*