libfilezilla/libfilezilla.spec

85 lines
2.6 KiB
RPMSpec
Raw Normal View History

Name: libfilezilla
Version: 0.5.3
Release: 1mamba
Summary: A C++ library offering some basic functionality to build high-performing, platform-independent programs
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://lib.filezilla-project.org
Source: http://downloads.sourceforge.net/project/filezilla/libfilezilla/%{version}/libfilezilla-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
libfilezilla is a free, open source C++ library, offering some basic functionality to build high-performing, platform-independent programs.
Some of the highlights include:
- A typesafe, multi-threaded event system that's very simple to use yet extremely efficient
- Timers for periodic events
- A datetime class that not only tracks timestamp but also their accuracy, which simplifies dealing with timestamps originating from different sources
- Simple process handling for spawning child processes with redirected I/O
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libfilezilla.so.*
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%dir %{_includedir}/libfilezilla
%{_includedir}/libfilezilla/*
%{_libdir}/libfilezilla.a
%{_libdir}/libfilezilla.la
%{_libdir}/libfilezilla.so
%{_libdir}/pkgconfig/libfilezilla.pc
%doc ChangeLog NEWS README
%changelog
* Thu Jul 14 2016 Automatic Build System <autodist@mambasoft.it> 0.5.3-1mamba
- automatic version update by autodist
* Sat Jun 04 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.5.2-1mamba
- update to 0.5.2
* Thu May 12 2016 Automatic Build System <autodist@mambasoft.it> 0.5.1-1mamba
- automatic version update by autodist
* Sat Feb 27 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.0.1-1mamba
- update to 0.4.0.1
* Tue Feb 02 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.3.1-1mamba
- package created using the webbuild interface