]> git.pld-linux.org Git - packages/perl-Compress-LZF.git/blame - perl-Compress-LZF.spec
rebuild with perl 5.32
[packages/perl-Compress-LZF.git] / perl-Compress-LZF.spec
CommitLineData
91135ce7 1#
2# Conditional build:
3%bcond_without tests # do not perform "make test"
4#
0da1b944 5%define pdir Compress
6%define pnam LZF
d342a0f2 7Summary: Compress::LZF Perl module - extremely leight-weight Lev-Zimpel-Free compression
97f79d5d 8Summary(pl.UTF-8): Moduł Perla Compress::LZF - ekstremalnie lekka kompresja Lev-Zimpel-Free
d342a0f2 9Name: perl-Compress-LZF
bd900c41
JB
10%define srcver 3.8
11Version: %{srcver}0
f2d8a65f 12Release: 4
471e8fc2 13# same as perl
14License: GPL v1+ or Artistic
d342a0f2 15Group: Development/Languages/Perl
bd900c41
JB
16Source0: http://www.cpan.org/modules/by-module/Compress/%{pdir}-%{pnam}-%{srcver}.tar.gz
17# Source0-md5: c6c4c09d288fd040782eb7edfc39b015
406d01e9 18URL: http://search.cpan.org/dist/Compress-LZF/
370bc5dd 19BuildRequires: perl-devel >= 1:5.8.0
a77cb047 20BuildRequires: rpm-perlprov >= 4.1-13
d342a0f2
JB
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24LZF is an extremely fast (not that much slower than a pure memcpy)
25compression algorithm. It is ideal for applications where you want to
26save *some* space but not at the cost of speed. It is ideal for
27repetitive data as well. The module is self-contained and very small
28(no large library to be pulled in). It is also free, so there should
29be no problems incoporating this module into commercial programs. It
30is believed that it is free from any patents.
31
2b087248
JR
32%description -l pl.UTF-8
33LZF jest ekstremalnie szybkim (nie tak dużo wolniejszym od memcpy)
34algorytmem kompresji. Jest idealny dla programów, które chcą
35zaoszczędzić *trochę* miejsca, ale nie kosztem szybkości. Jest idealny
36dla powtarzających się danych. Moduł jest mały i nie wymaga żadnej
37dodatkowej dużej biblioteki. Jest wolnodostępny, więc nie powinno być
38problemów z wykorzystaniem go w komercyjnych programach. Według
39aktualnego stanu wiedzy jest wolny od patentów.
d342a0f2
JB
40
41%prep
bd900c41 42%setup -q -n %{pdir}-%{pnam}-%{srcver}
d342a0f2
JB
43
44%build
a77cb047 45%{__perl} Makefile.PL \
6f461d17 46 INSTALLDIRS=vendor
91135ce7 47%{__make} \
231a12fa 48 CC="%{__cc}" \
91135ce7 49 OPTIMIZE="%{rpmcflags}"
50
51%{?with_tests:%{__make} test}
d342a0f2
JB
52
53%install
54rm -rf $RPM_BUILD_ROOT
55
56%{__make} install \
57 DESTDIR=$RPM_BUILD_ROOT
58
59%clean
60rm -rf $RPM_BUILD_ROOT
61
62%files
63%defattr(644,root,root,755)
64%doc Changes README
a77cb047 65%{perl_vendorarch}/Compress/LZF.pm
66%dir %{perl_vendorarch}/auto/Compress/LZF
bd900c41 67%attr(755,root,root) %{perl_vendorarch}/auto/Compress/LZF/LZF.so
7ed133e5 68%{_mandir}/man3/Compress::LZF.3pm*
This page took 0.121124 seconds and 4 git commands to generate.