74 lines
1.7 KiB
RPMSpec
74 lines
1.7 KiB
RPMSpec
Name: ucl
|
|
Version: 1.03
|
|
Release: 1
|
|
Epoch: 0
|
|
Summary: Portable lossless data compression library
|
|
|
|
Group: System Environment/Libraries
|
|
License: GPL
|
|
URL: http://www.oberhumer.com/opensource/ucl/
|
|
Source0: http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
%description
|
|
UCL is a portable lossless data compression library written in ANSI C.
|
|
UCL implements a number of compression algorithms that achieve an
|
|
excellent compression ratio while allowing *very* fast decompression.
|
|
Decompression requires no additional memory.
|
|
|
|
%package devel
|
|
Summary: UCL development files
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
%description devel
|
|
%{summary}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%configure --enable-shared
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING NEWS README THANKS TODO
|
|
%{_libdir}/libucl.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libucl.so
|
|
%{_libdir}/libucl.a
|
|
%{_includedir}/ucl
|
|
%exclude %{_libdir}/*.la
|
|
|
|
|
|
%changelog
|
|
* Wed Jul 21 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.03-0.fdr.1
|
|
- Update to 1.03, patch applied upstream.
|
|
|
|
* Fri Apr 30 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.02-0.fdr.1
|
|
- Update to 1.02.
|
|
|
|
* Thu Oct 23 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.01-0.fdr.2
|
|
- Specfile cleanup.
|
|
|
|
* Fri Jul 25 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.01-0.fdr.1
|
|
- First build.
|