libfilezilla-vl.spec 2.3 KB

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