package created using the webbuild interface [release 3.5.0-1mamba;Mon Aug 13 2018]

This commit is contained in:
Silvan Calarco 2024-01-05 17:38:52 +01:00
parent b6f8263447
commit a0bba81b15
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# sassc
SassC is a wrapper around libsass.

48
sassc.spec Normal file
View File

@ -0,0 +1,48 @@
Name: sassc
Version: 3.5.0
Release: 1mamba
Summary: SassC is a wrapper around libsass
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/sass/sassc.git
## GITSOURCE https://github.com/sass/sassc.git 3.5.0
Source: https://github.com/sass/sassc.git/%{version}/sassc-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libsass-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
SassC is a wrapper around libsass.
%debug_package
%prep
%setup -q
%build
autoreconf -f -i
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/sassc
%doc LICENSE
%changelog
* Mon Aug 13 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 3.5.0-1mamba
- package created using the webbuild interface