|
1 | 1 | Name: libsass |
2 | | -Version: 3.6.3 |
3 | | -Release: 3%{?dist} |
| 2 | +Version: 3.6.6 |
| 3 | +%global soname_version 1 |
| 4 | +Release: 1%{?dist} |
4 | 5 | Summary: C/C++ port of the Sass CSS precompiler |
5 | 6 |
|
6 | | -License: MIT |
| 7 | +# src/ast.hpp, src/utf8* is BSL-1.0 |
| 8 | +License: MIT AND BSL-1.0 |
7 | 9 | Vendor: Microsoft Corporation |
8 | 10 | Distribution: Azure Linux |
9 | | -URL: http://sass-lang.com/libsass |
| 11 | +URL: https://sass-lang.com/libsass |
10 | 12 | Source0: https://github.com/sass/libsass/archive/%{version}/%{name}-%{version}.tar.gz |
11 | 13 |
|
12 | 14 | BuildRequires: automake |
13 | 15 | BuildRequires: autoconf |
14 | 16 | BuildRequires: libtool |
15 | | -BuildRequires: pkgconfig |
16 | 17 | BuildRequires: gcc-c++ |
| 18 | +BuildRequires: make |
17 | 19 |
|
18 | 20 | %description |
19 | 21 | Libsass is a C/C++ port of the Sass CSS precompiler. The original version was |
@@ -43,30 +45,31 @@ autoreconf --force --install |
43 | 45 |
|
44 | 46 | %build |
45 | 47 | %configure --disable-static |
46 | | -make %{?_smp_mflags} |
47 | | - |
| 48 | +%make_build |
48 | 49 |
|
49 | 50 | %install |
50 | | -make install DESTDIR=$RPM_BUILD_ROOT |
51 | | -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' |
52 | | - |
53 | | - |
54 | | -%ldconfig_scriptlets |
| 51 | +%make_install |
| 52 | +find $RPM_BUILD_ROOT -name '*.la' -print -delete |
55 | 53 |
|
56 | 54 |
|
57 | 55 | %files |
58 | 56 | %license LICENSE |
59 | 57 | %doc Readme.md SECURITY.md |
60 | | -%{_libdir}/*.so.* |
| 58 | +%{_libdir}/libsass.so.%{soname_version}{,.*} |
61 | 59 |
|
62 | 60 | %files devel |
63 | | -%license LICENSE |
64 | | -%{_includedir}/* |
65 | | -%{_libdir}/*.so |
66 | | -%{_libdir}/pkgconfig/*.pc |
| 61 | +%{_includedir}/sass.h |
| 62 | +%{_includedir}/sass2scss.h |
| 63 | +%{_includedir}/sass/ |
| 64 | +%{_libdir}/libsass.so |
| 65 | +%{_libdir}/pkgconfig/libsass.pc |
67 | 66 |
|
68 | 67 |
|
69 | 68 | %changelog |
| 69 | +* Tue Nov 12 2024 Sumit Jena <v-sumitjena@microsoft.com> - 3.6.6-1 |
| 70 | +- Update to version 3.6.6 |
| 71 | +- License verified. |
| 72 | + |
70 | 73 | * Fri Oct 15 2021 Pawel Winogrodzki <pawelwi@microsoft.com> - 3.6.3-3 |
71 | 74 | - Initial CBL-Mariner import from Fedora 32 (license: MIT). |
72 | 75 |
|
|
0 commit comments