efl/legacy/eet/eet.spec

75 lines
1.9 KiB
Plaintext
Raw Normal View History

2002-12-02 15:39:26 -08:00
# Note that this is NOT a relocatable package
2004-04-15 00:58:38 -07:00
%define ver 0.9.9
2002-12-02 15:39:26 -08:00
%define rel 1
%define prefix /usr
2002-12-02 15:39:26 -08:00
Summary: Library for speedy data storage, retrieval, and compression.
2002-12-02 15:39:26 -08:00
Name: eet
Version: 0.9.9
Release: 2
2002-12-02 15:39:26 -08:00
Copyright: BSD
2003-02-06 17:06:35 -08:00
Group: System Environment/Libraries
Source: ftp://ftp.enlightenment.org/pub/eet/eet-%{version}.tar.gz
Packager: Michael Jennings <mej@eterm.org>
2002-12-02 15:39:26 -08:00
URL: http://www.enlightenment.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-root
2002-12-02 15:39:26 -08:00
%description
Eet is a tiny library designed to write an arbitary set of chunks of
data to a file and optionally compress each chunk (very much like a
zip file) and allow fast random-access reading of the file later
on. It does not do zip as a zip itself has more complexity than is
needed, and it was much simpler to impliment this once here.
It also can encode and decode data structures in memory, as well as
image data for saving to eet files or sending across the network to
other machines, or just writing to arbitary files on the system. All
data is encoded ina platform independant way and can be written and
read by any architecture.
2002-12-02 15:39:26 -08:00
2003-02-06 17:48:59 -08:00
%package devel
Summary: Eet headers, static libraries, documentation and test programs
Group: System Environment/Libraries
Requires: %{name} = %{version}
%description devel
Headers, static libraries, test programs and documentation for Eet
2002-12-02 15:39:26 -08:00
%prep
2003-02-06 17:48:59 -08:00
%setup -q
2002-12-02 15:39:26 -08:00
%build
%{configure} --prefix=%{_prefix}
%{__make} %{?_smp_mflags} %{?mflags}
test -x `which doxygen` && doxygen || :
2002-12-02 15:39:26 -08:00
%install
%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
2002-12-02 15:39:26 -08:00
%clean
test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
2002-12-02 15:39:26 -08:00
%post
2003-02-06 17:48:59 -08:00
/sbin/ldconfig
2002-12-02 15:39:26 -08:00
%postun
2003-02-06 17:48:59 -08:00
/sbin/ldconfig
2002-12-02 15:39:26 -08:00
%files
%defattr(-, root, root)
%doc AUTHORS COPYING README
%{_libdir}/libeet.so.*
%{_libdir}/libeet.la
%{_bindir}/eet
2002-12-02 15:39:26 -08:00
2003-02-06 17:48:59 -08:00
%files devel
%defattr(-, root, root)
%doc html
%{_libdir}/libeet.so
%{_libdir}/libeet.a
%{_bindir}/eet-config
%{_libdir}/pkgconfig/eet.pc
%{_includedir}/Eet*
2002-12-02 15:39:26 -08:00
%changelog