mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
Add fluent-icon-theme fluent-theme (#486)
This commit is contained in:
@@ -4,8 +4,15 @@
|
||||
"dockerfile": "Dockerfile",
|
||||
"args": { "VARIANT": "38" }
|
||||
},
|
||||
"settings": {},
|
||||
"extensions": [],
|
||||
"remoteUser": "vscode",
|
||||
"runArgs": ["--privileged"]
|
||||
"runArgs": [
|
||||
"--privileged"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"rhaiscript.vscode-rhai"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"rhaiscript.vscode-rhai"
|
||||
]
|
||||
}
|
||||
@@ -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));
|
||||
@@ -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
|
||||
@@ -0,0 +1,3 @@
|
||||
let release = gh("vinceliuice/Fluent-gtk-theme");
|
||||
rpm.global("tag", release);
|
||||
rpm.version(sub("-", "", release));
|
||||
Reference in New Issue
Block a user