source: projects/specs/trunk/lib/libs/libsass/libsass-vl.spec @ 12131

Revision 12131, 3.4 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

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