Add fluent-icon-theme fluent-theme (#486)

This commit is contained in:
lleyton
2023-06-01 02:05:48 -07:00
committed by GitHub
parent 134e10f2e3
commit f9ca0cf3c4
8 changed files with 104 additions and 3 deletions
+10 -3
View File
@@ -4,8 +4,15 @@
"dockerfile": "Dockerfile",
"args": { "VARIANT": "38" }
},
"settings": {},
"extensions": [],
"remoteUser": "vscode",
"runArgs": ["--privileged"]
"runArgs": [
"--privileged"
],
"customizations": {
"vscode": {
"extensions": [
"rhaiscript.vscode-rhai"
]
}
}
}
+5
View File
@@ -0,0 +1,5 @@
{
"recommendations": [
"rhaiscript.vscode-rhai"
]
}
+6
View File
@@ -0,0 +1,6 @@
project "pkg" {
arches = ["x86_64"]
rpm {
spec = "fluent-icon-theme.spec"
}
}
@@ -0,0 +1,33 @@
%global tag 2023-02-01
Name: fluent-icon-theme
Version: 20230201
Release: 1%{?dist}
Summary: Fluent icon theme for linux desktops.
License: GPL-3.0
URL: https://github.com/vinceliuice/Fluent-icon-theme/
Source0: %{url}/archive/refs/tags/%{tag}.tar.gz
BuildArch: noarch
BuildRequires: gtk-update-icon-cache
%description
Fluent icon theme for linux desktops.
%prep
%autosetup -n Fluent-icon-theme-%{tag}
%install
mkdir -p %{buildroot}%{_datadir}/themes
./install.sh -r -a -d %{buildroot}%{_datadir}/icons
%files
%license COPYING
%doc README.md
%{_datadir}/icons/Fluent*/
%changelog
* Thu Jun 01 2023 Lleyton Gray <lleyton@fyralabs.com> - 20230201-1
- Initial Package
@@ -0,0 +1,3 @@
let release = gh("vinceliuice/Fluent-icon-theme");
rpm.global("tag", release);
rpm.version(sub("-", "", release));
+6
View File
@@ -0,0 +1,6 @@
project "pkg" {
arches = ["x86_64"]
rpm {
spec = "fluent-theme.spec"
}
}
@@ -0,0 +1,38 @@
%global tag 2022-12-15
Name: fluent-theme
Version: 20221215
Release: 1%{?dist}
Summary: Fluent is a Fluent design theme for GNOME/GTK based desktop environments.
License: GPL-3.0
URL: https://github.com/vinceliuice/Fluent-gtk-theme
Source0: https://github.com/vinceliuice/Fluent-gtk-theme/archive/refs/tags/%{tag}.tar.gz
BuildArch: noarch
BuildRequires: sassc
Requires: gtk-murrine-engine
%description
Fluent is a Fluent design theme for GNOME/GTK based desktop environments.
%prep
%autosetup -n Fluent-gtk-theme-%{tag}
%build
./parse-sass.sh
%install
mkdir -p %{buildroot}%{_datadir}/themes
./install.sh --tweaks round -d %{buildroot}%{_datadir}/themes
%files
%license COPYING
%doc README.md
%{_datadir}/themes/Fluent*/
%changelog
* Thu Jun 01 2023 Lleyton Gray <lleyton@fyralabs.com> - 20221215-1
- Initial Package
+3
View File
@@ -0,0 +1,3 @@
let release = gh("vinceliuice/Fluent-gtk-theme");
rpm.global("tag", release);
rpm.version(sub("-", "", release));