From a0bba81b1532477e44414449b0b5570d68db26af Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:38:52 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.5.0-1mamba;Mon Aug 13 2018] --- README.md | 2 ++ sassc.spec | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 sassc.spec diff --git a/README.md b/README.md index 30e5762..8546053 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # sassc +SassC is a wrapper around libsass. + diff --git a/sassc.spec b/sassc.spec new file mode 100644 index 0000000..de2b894 --- /dev/null +++ b/sassc.spec @@ -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 +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 3.5.0-1mamba +- package created using the webbuild interface