libfilezilla-vl.spec 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Name: libfilezilla
  2. Version: 0.5.3
  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. %package devel
  10. Summary: Development files for C++ Library for FileZilla
  11. Group: Development/Libraries
  12. Requires: %{name}%{?_isa} = %{version}-%{release}
  13. %description
  14. libfilezilla is a small and modern C++ library, offering some basic
  15. functionality to build high-performing, platform-independent programs.
  16. %description devel
  17. libfilezilla is a small and modern C++ library, offering some basic
  18. functionality to build high-performing, platform-independent programs.
  19. This package contains files needed to compile code using libfilezilla.
  20. %prep
  21. %setup -q
  22. %build
  23. %configure --disable-static
  24. make %{?_smp_mflags}
  25. %install
  26. make DESTDIR=$RPM_BUILD_ROOT install
  27. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  28. %post -p /sbin/ldconfig
  29. %postun -p /sbin/ldconfig
  30. %files
  31. %license COPYING
  32. %doc AUTHORS ChangeLog NEWS README
  33. %{_libdir}/*.so.*
  34. %files devel
  35. %doc doc/*
  36. %{_libdir}/*.so
  37. %{_includedir}/*
  38. %{_libdir}/pkgconfig/libfilezilla.pc
  39. %changelog
  40. * Sat Jul 09 2016 Toshiharu Kudoh <kudoh@vinelinux.org> - 0.5.3-1
  41. - initial build for Vine Linux
  42. * Tue Jun 21 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.3-1
  43. - Latest upstream.
  44. * Sun May 22 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.2-1
  45. - Latest upstream.
  46. * Mon Apr 25 2016 Jon Ciesla <limburgher@gmail.com> - 0.5.0-1
  47. - Latest upstream.
  48. * Mon Apr 04 2016 Jon Ciesla <limburgher@gmail.com> - 0.4.0.1-2
  49. - Dropped buildroot, Group, buildroot scrup, and added --disable-static and
  50. - isa-specific Requires.
  51. * Tue Mar 15 2016 Jon Ciesla <limburgher@gmail.com> - 0.4.0.1-1
  52. - Initial package creation.