This commit is contained in:
Cappy Ishihara
2022-10-11 10:08:08 +07:00
parent 082ed89fc9
commit 1f8db0de26
2 changed files with 44 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
project "pkg" {
rpm {
spec = "sass.spec"
sources = "."
}
}
+38
View File
@@ -0,0 +1,38 @@
# https://file.coffee/u/Gz5mMFn8_KItLQ.jpg
%global debug_package %{nil}
%global __os_install_post %{nil}
%define _build_id_links none
Name: sass
Version: 1.53.0
Release: 5%{?dist}
Summary: The reference implementation of Sass, written in Dart
License: MIT
URL: https://sass-lang.com/dart-sass
Source0: https://github.com/sass/dart-sass/archive/refs/tags/%{version}.tar.gz
BuildRequires: dart
%description
Dart Sass is the primary implementation of Sass, which means it gets new features before any other implementation. It's fast, easy to install, and it compiles to pure JavaScript which makes it easy to integrate into modern web development workflows.
%prep
%setup -q -n dart-sass-%{version}
/usr/bin/dart pub get
%build
dart compile exe ./bin/sass.dart -o sass
%install
mkdir -p %{buildroot}%{_bindir}
install -m 755 sass %{buildroot}%{_bindir}/sass
%files
%{_bindir}/sass
%license LICENSE
%doc README.md
%changelog
* Tue Oct 11 2022 Cappy Ishihara <cappy@cappuchino.xyz> - 1.53.0-5
- Repackaged from tauOS repository