libsass-vl.spec 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. Name: libsass
  2. Version: 3.5.5
  3. Release: 1%{?_dist_release}
  4. Summary: C/C++ port of the Sass CSS precompiler
  5. Summary(ja): C/C++ Sass CSS プリコンパイラ
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: MIT
  9. URL: http://sass-lang.com/libsass
  10. Source0: https://github.com/sass/libsass/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
  11. BuildRequires: automake
  12. BuildRequires: autoconf
  13. BuildRequires: libtool
  14. BuildRequires: pkgconfig
  15. BuildRequires: gcc-c++
  16. %description
  17. Libsass is a C/C++ port of the Sass CSS precompiler. The original version was
  18. written in Ruby, but this version is meant for efficiency and portability.
  19. This library strives to be light, simple, and easy to build and integrate with
  20. a variety of platforms and languages.
  21. Libsass is just a library, but if you want to RUN libsass, install the sassc
  22. package.
  23. %package devel
  24. Summary: Development files for %{name}
  25. Requires: %{name}%{?_isa} = %{version}-%{release}
  26. %description devel
  27. The %{name}-devel package contains libraries and header files for
  28. developing applications that use %{name}.
  29. %prep
  30. %setup -q
  31. export LIBSASS_VERSION=%{version}
  32. autoreconf --force --install
  33. %build
  34. %configure --disable-static
  35. make %{?_smp_mflags}
  36. %install
  37. make install DESTDIR=$RPM_BUILD_ROOT
  38. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  39. %post -p /sbin/ldconfig
  40. %postun -p /sbin/ldconfig
  41. %files
  42. %license LICENSE
  43. %doc Readme.md SECURITY.md
  44. %{_libdir}/*.so.*
  45. %files devel
  46. %license LICENSE
  47. %{_includedir}/*
  48. %{_libdir}/*.so
  49. %{_libdir}/pkgconfig/*.pc
  50. %changelog
  51. * Sun Dec 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.5.5-1
  52. - new upstream release.
  53. - initial build for Vine Linux.
  54. * Fri Jul 20 2018 Aurelien Bompard <abompard@fedoraproject.org> - 3.5.4-3
  55. - Add missing BR
  56. * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.4-2
  57. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  58. * Fri Jun 22 2018 Marcel Plch <mplch@redhat.com> - 3.5.4-1
  59. - Update to 3.5.4
  60. * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-5
  61. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  62. * Thu Sep 14 2017 Miro Hrončok <mhroncok@redhat.com> - 3.4.5-4
  63. - Export LIBSASS_VERSION, so it is possible to get it via libsass_version()
  64. * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-3
  65. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  66. * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-2
  67. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  68. * Mon Jul 24 2017 Aurelien Bompard <abompard@fedoraproject.org> - 3.4.5-1
  69. - version 3.4.5: https://github.com/sass/libsass/releases/tag/3.4.5
  70. * Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-2
  71. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  72. * Mon Dec 19 2016 Aurelien Bompard <abompard@fedoraproject.org> - 3.4.1-1
  73. - Version 3.4.1: https://github.com/sass/libsass/releases/tag/3.4.1
  74. * Mon Dec 12 2016 Aurelien Bompard <abompard@fedoraproject.org> - 3.4.0-1
  75. - Version 3.4.0: https://github.com/sass/libsass/releases/tag/3.4.0
  76. * Wed Sep 30 2015 Aurelien Bompard <abompard@fedoraproject.org> - 3.3.6-1
  77. - initial package