blob: 0be83330f46f94c48fcefc5b5c2687590ffd2110 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
Name: lzop
Version: 1.04
Release: 0
License: GPLv2+
Summary: lzop
URL: http://www.lzop.org
Group: Applications/Text
Source: %{name}-%{version}.tar.gz
Source1001: lzop.manifest
BuildRequires: lzo
BuildRequires: lzo-devel
%description
lzop is a file compressor which is very similar to gzip. lzop uses
the LZO data compression library for compression services, and its
main advantages over gzip are much higher compression and
decompression speed (at the cost of some compression ratio).
lzop is copyrighted OpenSource software distributed under the terms
of the GNU General Public License (GPL).
%prep
%setup -q
%build
cp %{SOURCE1001} .
%configure --disable-nls
make PR_PROGRAM=%{_bindir}/pr
%install
%make_install
%remove_docs
%clean
rm -rf %{buildroot}
%files
%manifest %{name}.manifest
%defattr(-,root,root,-)
%license COPYING
%{_bindir}/*
|