2007-01-16 00:24:27 +01:00
|
|
|
#
|
|
|
|
# spec file for package lzo (Version 2.02)
|
|
|
|
#
|
2008-02-25 17:29:09 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:24:27 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-02-25 17:29:09 +01:00
|
|
|
|
2007-01-16 00:24:27 +01:00
|
|
|
Name: lzo
|
2008-02-25 17:29:09 +01:00
|
|
|
Url: http://www.oberhumer.com/opensource/lzo/
|
2007-01-16 00:24:27 +01:00
|
|
|
Version: 2.02
|
2008-02-25 17:29:09 +01:00
|
|
|
Release: 96
|
2007-01-16 00:24:27 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Source: lzo-%{version}.tar.bz2
|
2007-02-12 17:00:24 +01:00
|
|
|
Patch: lzo-noexec.patch
|
2007-01-16 00:24:27 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
Summary: A Real-Time Data Compression Library
|
2008-02-25 17:29:09 +01:00
|
|
|
License: GPL v2 only
|
|
|
|
|
2007-01-16 00:24:27 +01:00
|
|
|
%package devel
|
|
|
|
Summary: a real-time data compression library
|
2008-02-25 17:29:09 +01:00
|
|
|
License: GPL v2 only
|
2007-01-16 00:24:27 +01:00
|
|
|
Group: Development/Languages/Fortran
|
2008-02-25 17:29:09 +01:00
|
|
|
Requires: lzo = %{version} glibc-devel
|
2007-01-16 00:24:27 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
LZO is a portable lossless data compression library written in ANSI C.
|
|
|
|
It offers pretty fast compression and very fast decompression.
|
|
|
|
Decompression requires no memory. LZO is suitable for data compression
|
|
|
|
and decompression in real-time. This means it favors speed over
|
|
|
|
compression ratio.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Markus Franz Xaver Johannes Oberhumer <markus@oberhumer.com>
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
LZO is a portable lossless data compression library written in ANSI C.
|
|
|
|
It offers pretty fast compression and very fast decompression.
|
|
|
|
Decompression requires no memory. LZO is suitable for data
|
|
|
|
de-/compression in real-time. This means it favours speed over
|
|
|
|
compression ratio.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Markus Franz Xaver Johannes Oberhumer <markus@oberhumer.com>
|
|
|
|
|
|
|
|
%prep
|
2007-02-12 17:00:24 +01:00
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
2007-01-16 00:24:27 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --enable-shared
|
|
|
|
%{__make}
|
2008-02-25 17:29:09 +01:00
|
|
|
|
|
|
|
%check
|
2007-01-16 00:24:27 +01:00
|
|
|
%{__make} check test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
2008-02-25 17:29:09 +01:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2007-01-16 00:24:27 +01:00
|
|
|
%files
|
|
|
|
%defattr (-,root,root)
|
|
|
|
%doc AUTHORS BUGS COPYING NEWS README THANKS
|
|
|
|
%doc doc/* util/*
|
|
|
|
%{_libdir}/liblzo*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr (-,root,root)
|
|
|
|
%{_libdir}/liblzo*.*a*
|
|
|
|
%{_libdir}/liblzo*.so
|
|
|
|
%_includedir/lzo
|
|
|
|
|
2008-02-25 17:29:09 +01:00
|
|
|
%changelog
|
|
|
|
* Mon Feb 25 2008 crrodriguez@suse.de
|
|
|
|
- run ldconfig
|
|
|
|
* Mon Feb 12 2007 meissner@suse.de
|
2007-02-12 17:00:24 +01:00
|
|
|
- added marker for nonexec stack/heap to i386 assembler.
|
2008-02-25 17:29:09 +01:00
|
|
|
* Wed Sep 27 2006 poeml@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- add BuildRequires: gcc-c++ for building on Fedora
|
2008-02-25 17:29:09 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-02-25 17:29:09 +01:00
|
|
|
* Mon Jan 16 2006 mrueckert@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- update to version 2.02
|
2008-02-25 17:29:09 +01:00
|
|
|
* Mon Sep 26 2005 mls@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- make devel package require base package
|
2008-02-25 17:29:09 +01:00
|
|
|
* Tue Jun 28 2005 cthiel@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- update to version 2.01
|
2008-02-25 17:29:09 +01:00
|
|
|
* Thu Jun 02 2005 hvogel@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- update to version 2.0
|
2008-02-25 17:29:09 +01:00
|
|
|
* Fri Jan 09 2004 adrian@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- move devel files to -devel package
|
2008-02-25 17:29:09 +01:00
|
|
|
* Wed Aug 20 2003 cwh@suse.de
|
2007-01-16 00:24:27 +01:00
|
|
|
- initial release
|