[e00compr] INITIAL IMPORT

Volker Fröhlich volter at fedoraproject.org
Thu Oct 27 15:43:53 UTC 2011


commit ee6be1454100c478a612870cfab6d69e0197f23a
Author: Volker Fröhlich <volker27 at gmx.at>
Date:   Thu Oct 27 17:43:30 2011 +0200

    INITIAL IMPORT

 .gitignore    |    1 +
 e00compr.spec |   63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources       |    1 +
 3 files changed, 65 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..28f323c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/e00compr-1.0.1.tar.gz
diff --git a/e00compr.spec b/e00compr.spec
new file mode 100644
index 0000000..a1a8ea3
--- /dev/null
+++ b/e00compr.spec
@@ -0,0 +1,63 @@
+Name:           e00compr
+Version:        1.0.1
+Release:        2%{?dist}
+Summary:        Library to compress and uncompress E00 files
+Group:          Applications/Engineering
+
+License:        MIT
+URL:            http://avce00.maptools.org/e00compr
+Source0:        http://avce00.maptools.org/dl/%{name}-%{version}.tar.gz
+
+
+%description
+ANSI-C library to compress and uncompress Arc/Info Export (E00) files. 
+
+%package devel
+Summary: Development files for %{name}
+Group:   Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Provides: %{name}-static%{?_isa} = %{version}-%{release}
+
+%description devel
+Contains %{name}'s development headers and library.
+
+
+%prep
+%setup -q
+chmod -x *.h *.c
+sed -i 's/\r$//' README.TXT
+
+
+%build
+make %{?_smp_mflags} CFLAGS="%{optflags}"
+
+
+%install
+mkdir -p %{buildroot}%{_includedir}
+mkdir -p %{buildroot}%{_mandir}/man1
+mkdir -p %{buildroot}%{_libdir}
+mkdir -p %{buildroot}%{_bindir}
+
+install -pm 0644 *.h %{buildroot}%{_includedir}
+install -pm 0644 *.1 %{buildroot}%{_mandir}/man1
+install -pm 0644 *.a %{buildroot}%{_libdir}
+install -pm 0755 e00conv %{buildroot}%{_bindir}
+
+
+%files
+%doc HISTORY.TXT README.TXT e00compr.html
+%{_bindir}/e00conv
+%{_mandir}/man1/e00conv.1.*
+
+%files devel
+%doc ex_*.c
+%{_includedir}/*.h
+%{_libdir}/*.a
+
+
+%changelog
+* Thu Oct 27 2011 Volker Fröhlich <volker27 at gmx.at> - 1.0.1-2
+- Add isa macro to provide
+
+* Mon Oct 17 2011 Volker Fröhlich <volker27 at gmx.at> - 1.0.1-1
+- Initial package for Fedora
diff --git a/sources b/sources
index e69de29..311516d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6ab8ceadf8b63357aff88bca2da06355  e00compr-1.0.1.tar.gz


More information about the scm-commits mailing list