]> git.pld-linux.org Git - packages/sassc.git/blob - sassc.spec
84f2603b89a2a0f4102f1b92eee64dc56a3cb711
[packages/sassc.git] / sassc.spec
1 Summary:        Wrapper around libsass to compile CSS stylesheet
2 Name:           sassc
3 Version:        3.5.0
4 Release:        1
5 License:        MIT
6 Group:          Applications
7 Source0:        https://github.com/sass/sassc/archive/%{version}/%{name}-%{version}.tar.gz
8 # Source0-md5:  f5c6aeb4e98c96d093f20295fc490f2c
9 URL:            https://github.com/sass/sassc
10 BuildRequires:  autoconf >= 2.61
11 BuildRequires:  automake
12 BuildRequires:  libsass-devel >= 3.5.0
13 BuildRequires:  libtool
14 Requires:       libsass >= 3.5.0
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 SassC is a wrapper around libsass used to generate a useful
19 command-line application that can be installed and packaged for
20 several operating systems.
21
22 %prep
23 %setup -q
24
25 %build
26 %{__libtoolize}
27 %{__aclocal}
28 %{__autoconf}
29 %{__autoheader}
30 %{__automake}
31 %configure
32 %{__make}
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36
37 %{__make} install \
38         DESTDIR=$RPM_BUILD_ROOT
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %doc Readme.md
46 %attr(755,root,root) %{_bindir}/sassc
This page took 0.047828 seconds and 2 git commands to generate.