57 lines
1.6 KiB
RPMSpec
57 lines
1.6 KiB
RPMSpec
|
#
|
||
|
# spec file for package sassc
|
||
|
#
|
||
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
Name: sassc
|
||
|
Version: 3.3.6
|
||
|
Release: 0
|
||
|
License: MIT
|
||
|
Summary: Libsass command line driver
|
||
|
Url: https://github.com/sass/sassc/
|
||
|
Group: Development/Tools/Other
|
||
|
Source: https://github.com/sass/sassc/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||
|
BuildRequires: automake
|
||
|
BuildRequires: autoconf
|
||
|
BuildRequires: gcc-c++
|
||
|
BuildRequires: make
|
||
|
BuildRequires: libsass-devel
|
||
|
BuildRequires: libtool
|
||
|
|
||
|
%description
|
||
|
SassC is a C/C++ port of the Sass engine. The point is to be
|
||
|
simple, fast, and easy to integrate.
|
||
|
|
||
|
Sass is a pre-processing language for CSS. It allows you to write
|
||
|
cleaner stylesheets and makes collaboration on your CSS a breeze.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
autoreconf -fiv
|
||
|
./configure --prefix=%{_prefix}
|
||
|
make %{?_smp_mflags}
|
||
|
|
||
|
%install
|
||
|
make install DESTDIR=%{buildroot} %{?_smp_mflags}
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc LICENSE Readme.md TODO
|
||
|
%{_bindir}/%{name}
|
||
|
|
||
|
%changelog
|