libsass/libsass.spec
Ismail Dönmez e7114bfcd7 Accepting request 408225 from home:psimons:branches:devel:libraries:c_c++
Remove redundant "Obsoletes" attribute from spec file. New
versions implicitly obsolete older versions of the same package;
this doesn't need to be stated explicitly.

OBS-URL: https://build.opensuse.org/request/show/408225
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libsass?expand=0&rev=5
2016-07-14 10:43:33 +00:00

92 lines
2.5 KiB
RPMSpec

#
# spec file for package libsass
#
# 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/
#
%define libname libsass0
Name: libsass
Version: 3.3.2
Release: 0
Summary: C/C++ Sass compiler library
License: MIT
Group: Development/Libraries/C and C++
Url: https://github.com/sass/libsass
Source: %{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gcc-c++
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Sass is a CSS pre-processor language to add on exciting, new, awesome
features to CSS. LibSass is a C/C++ port of the Sass CSS precompiler.
The original version was written in Ruby, but this version is meant
for efficiency and portability.
This library strives to be light, simple, and easy to build and integrate
with a variety of platforms and languages.
%package -n %{libname}
Summary: Library shared object of libsass
Group: Development/Libraries/C and C++
%description -n %{libname}
This package provides the shared library object for libsass
%package devel
Summary: C/C++ Sass compiler library development files
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
%description devel
This package provides development header files for libsass
%prep
%setup -q
%build
autoreconf -fi
%configure --with-pic --disable-static
make %{?_smp_mflags}
%check
make check %{?_smp_mflags}
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install
rm %{buildroot}/%{_libdir}/libsass.la
%files -n %{libname}
%defattr(-,root,root)
%doc LICENSE
%{_libdir}/libsass.so.*
%files devel
%defattr(-,root,root)
%dir %{_includedir}/sass
%{_includedir}/sass/*.h
%{_includedir}/sass.h
%{_includedir}/sass2scss.h
%{_libdir}/pkgconfig/libsass.pc
%{_libdir}/libsass.so
%changelog