libfilezilla-vl.spec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Name: libfilezilla
  2. Version: 0.18.2
  3. Release: 1%{?_dist_release}
  4. URL: http://lib.filezilla-project.org/
  5. Summary: C++ Library for FileZilla
  6. License: GPLv2+
  7. Source0: http://download.sourceforge.net/sourceforge/filezilla/%{name}-%{version}.tar.bz2
  8. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  9. BuildRequires: nettle-devel
  10. BuildRequires: gnutls-devel
  11. %package devel
  12. Summary: Development files for C++ Library for FileZilla
  13. Group: Development/Libraries
  14. Requires: %{name}%{?_isa} = %{version}-%{release}
  15. %description
  16. libfilezilla is a small and modern C++ library, offering some basic
  17. functionality to build high-performing, platform-independent programs.
  18. %description devel
  19. libfilezilla is a small and modern C++ library, offering some basic
  20. functionality to build high-performing, platform-independent programs.
  21. This package contains files needed to compile code using libfilezilla.
  22. %prep
  23. %setup -q
  24. %build
  25. %configure --disable-static
  26. make %{?_smp_mflags}
  27. %install
  28. make DESTDIR=$RPM_BUILD_ROOT install
  29. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  30. %post -p /sbin/ldconfig
  31. %postun -p /sbin/ldconfig
  32. %files
  33. %license COPYING
  34. %doc AUTHORS ChangeLog NEWS README
  35. %{_libdir}/*.so.*
  36. %files devel
  37. %doc doc/*
  38. %{_libdir}/*.so
  39. %{_includedir}/*
  40. %{_libdir}/pkgconfig/libfilezilla.pc
  41. %changelog
  42. * Sat Oct 12 2019 Toshiaki Ara <ara_t@384.jp> - 0.18.2-1
  43. - new upstream release
  44. - add BuildRequires: nettle-devel
  45. * Sat Jul 23 2016 Toshiharu Kudoh <kudoh@vinelinux.org> - 0.6.0-1
  46. - new upstream release
  47. * Sat Jul 09 2016 Toshiharu Kudoh <kudoh@vinelinux.org> - 0.5.3-1
  48. - initial build for Vine Linux
  49. * Tue Jun 21 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.3-1
  50. - Latest upstream.
  51. * Sun May 22 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.2-1
  52. - Latest upstream.
  53. * Mon Apr 25 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.0-1
  54. - Latest upstream.
  55. * Mon Apr 04 2016 Jon Ciesla <limburgher@gmail.com> - 0.4.0.1-2
  56. - Dropped buildroot, Group, buildroot scrup, and added --disable-static and
  57. - isa-specific Requires.
  58. * Tue Mar 15 2016 Jon Ciesla <limburgher@gmail.com> - 0.4.0.1-1
  59. - Initial package creation.