libuv-vl.spec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Summary: a multi-platform support library with a focus on asynchronous I/O
  2. Name: libuv
  3. Version: 1.42.0
  4. Release: 1%{?_dist_release}
  5. License: Node's license and so on (See LICENSE file)
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. Packager: iwaim
  10. URL: https://github.com/libuv/libuv
  11. Source0: https://github.com/libuv/libuv/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. %description
  14. libuv is a multi-platform support library with a focus on asynchronous I/O.
  15. It was primarily developed for use by Node.js, but it's also used by Luvit,
  16. Julia, pyuv, and others.
  17. %package devel
  18. Summary: Development libraries and headers for libuv
  19. Group: programming
  20. Requires: %{name} = %{version}-%{release}
  21. %description devel
  22. Development libraries and headers for libuv.
  23. %debug_package
  24. %prep
  25. %setup -q
  26. ./autogen.sh
  27. %configure
  28. %build
  29. %make_build
  30. %install
  31. rm -rf $RPM_BUILD_ROOT
  32. %make_install
  33. %__rm -f %{buildroot}%{_libdir}/*.{la,a}
  34. %clean
  35. rm -rf $RPM_BUILD_ROOT
  36. %check
  37. make check
  38. %files
  39. %defattr(-,root,root,-)
  40. %license LICENSE
  41. %doc AUTHORS CONTRIBUTING.md ChangeLog README.md
  42. %{_libdir}/%{name}*.so.*
  43. %files devel
  44. %defattr(-,root,root,-)
  45. %license LICENSE LICENSE-docs
  46. %doc AUTHORS CONTRIBUTING.md ChangeLog README.md
  47. %doc img docs
  48. %{_libdir}/%{name}*.so
  49. %{_libdir}/pkgconfig/*.pc
  50. %{_includedir}/uv.h
  51. %{_includedir}/uv
  52. %changelog
  53. * Tue Aug 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.42.0-1
  54. - new upstream release.
  55. * Mon Mar 23 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.4.2-1
  56. - Initial build.