Files
packages/anda/sass/sass.spec
T
Cappy Ishihara 1f8db0de26 add sass
2022-10-11 10:08:08 +07:00

39 lines
1.0 KiB
RPMSpec

# 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