blob: 81db7c5a824c91b3d9aa7fd430926ace90771a83 (
plain)
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
|
--- Package.pm.orig 2007-05-25 09:54:14.000000000 -0400
+++ Package.pm 2007-07-07 15:35:20.000000000 -0400
@@ -165,6 +165,7 @@
push @out, $self->provreq($n);
}
+ return join("\n", map { "Provides: $_"; } @out) if scalar(@out) > 5;
return join('', 'Provides: ', join ' ', @out);
}
@@ -376,10 +377,15 @@
%install
-make PREFIX=%{_prefix} \
- DESTDIR=%{buildroot} \
- INSTALLDIRS=@installdirs@ \
- install
+if [ -f Build.PL -a -f Build ] ; then
+ ./Build destdir=%{buildroot} \
+ install
+else
+ make PREFIX=%{_prefix} \
+ DESTDIR=%{buildroot} \
+ INSTALLDIRS=@installdirs@ \
+ install
+fi
[ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress
|