[libesedb] Initial version for Fedora

rebus rebus at fedoraproject.org
Sun Oct 21 10:06:33 UTC 2012


commit 39abe713ea948826a28b66b1a6cd2b8eea879636
Author: Michal Ambroz <rebus at seznam.cz>
Date:   Sun Oct 21 12:06:06 2012 +0200

    Initial version for Fedora

 .gitignore    |    1 +
 libesedb.spec |   68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources       |    1 +
 3 files changed, 70 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..795704c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libesedb-alpha-20120102.tar.gz
diff --git a/libesedb.spec b/libesedb.spec
new file mode 100644
index 0000000..741c0af
--- /dev/null
+++ b/libesedb.spec
@@ -0,0 +1,68 @@
+Name:           libesedb
+Version:        20120102
+Release:        3%{?dist}
+Summary:        Library to access the Extensible Storage Engine (ESE) Database File (EDB) format
+
+License:        GPLv3+
+URL:            http://code.google.com/p/libesedb/
+Source0:        http://libesedb.googlecode.com/files/%{name}-alpha-%{version}.tar.gz
+
+
+%description
+Library and tools to access the Extensible Storage Engine (ESE) Database File
+(EDB) format. ESEDB is used in may different applications like Windows Search,
+Windows Mail, Exchange, Active Directory, etc.
+
+
+%package        devel
+Summary:        Development files for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+
+%install
+make install DESTDIR=%{buildroot}
+find %{buildroot} -name '*.la' -exec rm -f {} ';'
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%doc COPYING AUTHORS
+%{_libdir}/*.so.*
+%{_bindir}/esedbexport
+%{_bindir}/esedbinfo
+%{_mandir}/man1/esedbinfo.1.*
+%{_mandir}/man3/libesedb.3.*
+
+%files devel
+%doc
+%{_includedir}/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/libesedb.pc
+
+
+%changelog
+* Sat Oct 06 2012 Michal Ambroz <rebus at, seznam.cz> 20120102-3
+- updates based on the review of Mario Blättermann
+
+* Sat Oct 06 2012 Michal Ambroz <rebus at, seznam.cz> 20120102-2
+- updates based on the review of Mario Blättermann
+
+* Sun May 13 2012 Michal Ambroz <rebus at, seznam.cz> 20120102-1
+- initial build for Fedora
diff --git a/sources b/sources
index e69de29..755ca9d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+198a30c98ca1b3cb46d10a12bef8deaf  libesedb-alpha-20120102.tar.gz


More information about the scm-commits mailing list