[libfap/el6/master] Initial Import (#669010)

Andrew Elwell elwell at fedoraproject.org
Sat Jan 22 21:43:36 UTC 2011


commit 760c38ad9534b0fda6d8fa11c7eeb4904cff6e83
Author: Andrew Elwell <Andrew.Elwell at gmail.com>
Date:   Sat Jan 22 22:43:28 2011 +0100

    Initial Import (#669010)

 .gitignore  |    1 +
 libfap.spec |   74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources     |    1 +
 3 files changed, 76 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..4063d37 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libfap-1.0.tar.gz
diff --git a/libfap.spec b/libfap.spec
new file mode 100644
index 0000000..2146a06
--- /dev/null
+++ b/libfap.spec
@@ -0,0 +1,74 @@
+Name:           libfap
+Version:        1.0
+Release:        3%{?dist}
+Summary:        An APRS parser written in C
+
+Group:          Applications/Communications
+License:        GPL+ or Artistic
+URL:            http://pakettiradio.net/libfap/
+Source0:        http://pakettiradio.net/downloads/%{name}/%{version}/%{name}-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+%description
+libfap is an APRS (Amateur Packet Reporting System) parser that can decode
+normal, mic-e and compressed location packets, NMEA location packets, 
+objects, items, messages, telemetry and most weather packets.
+
+
+%package        devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name} = %{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}
+
+%check
+make check
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING README THANKS licenses/*.txt
+%{_libdir}/*.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/*
+%{_libdir}/*.so
+
+%changelog
+* Fri Jan 21 2011 Andrew Elwell <Andrew.Elwell at gmail.com> - 1.0-3
+- Added make check to spec
+
+* Fri Jan 21 2011 Andrew Elwell <Andrew.Elwell at gmail.com> - 1.0-2
+- Removed duplicate docs
+- Improved wording of summary and description
+
+* Thu Jan 20 2011 Andrew Elwell <Andrew.Elwell at gmail.com> - 1.0-1
+- New upstream release on 2010-01-17
+
+* Wed Jan 12 2011 Andrew Elwell <Andrew.Elwell at gmail.com> - 0.9-1
+- Initial package for Fedora
diff --git a/sources b/sources
index e69de29..120d215 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+33a5e5f1bd9c0ad4c20e19b7fef4cbc3  libfap-1.0.tar.gz


More information about the scm-commits mailing list