mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-29 14:58:27 +00:00
91 lines
3.0 KiB
RPMSpec
91 lines
3.0 KiB
RPMSpec
%global flist 0xProto 3270 Agave AnonymousPro Arimo AurulentSansMono BigBlueTerminal BitstreamVeraSansMono CascadiaCode CascadiaMono CodeNewRoman ComicShannsMono CommitMono Cousine D2Coding DaddyTimeMono DejaVuSansMono DepartureMono DroidSansMono EnvyCodeR FantasqueSansMono FiraCode FiraMono GeistMono Go-Mono Gohu Hack Hasklig HeavyData Hermit iA-Writer IBMPlexMono Inconsolata InconsolataGo InconsolataLGC IntelOneMono Iosevka IosevkaTerm IosevkaTermSlab JetBrainsMono Lekton LiberationMono Lilex MartianMono Meslo Monaspace Monofur Monoid Mononoki MPlus NerdFontsSymbolsOnly Noto OpenDyslexic Overpass ProFont ProggyClean Recursive RobotoMono ShareTechMono SourceCodePro SpaceMono Terminus Tinos Ubuntu UbuntuMono UbuntuSans VictorMono ZedMono
|
|
%global desc %{expand:
|
|
Nerd Fonts is a project that patches developer targeted fonts with a high
|
|
number of glyphs (icons).}
|
|
|
|
Name: nerd-fonts
|
|
Version: 3.4.0
|
|
Release: 1%?dist
|
|
URL: https://nerdfonts.com/
|
|
Source0: https://raw.githubusercontent.com/ryanoasis/nerd-fonts/v%version/readme.md
|
|
Source1: https://raw.githubusercontent.com/ryanoasis/nerd-fonts/v%version/LICENSE
|
|
License: OFL-1.1
|
|
Summary: All packaged Nerd fonts
|
|
BuildArch: noarch
|
|
Recommends: %{lua:
|
|
local x = ""
|
|
local ver = rpm.expand("%version-%release")
|
|
for font in (rpm.expand("%flist")):gmatch("[^ ]+") do
|
|
x = x .. font:lower().."-nerd-fonts = "..ver.." "
|
|
end
|
|
print(x)
|
|
}
|
|
BuildRequires: unzip
|
|
%{lua:
|
|
local url = rpm.expand(": https://github.com/ryanoasis/nerd-fonts/releases/download/v%{version}/");
|
|
local n = 2;
|
|
for font in (rpm.expand("%flist")):gmatch("[^ ]+") do
|
|
print("Source"..n..url..font..".zip\n")
|
|
n = n + 1
|
|
end
|
|
}
|
|
|
|
%description
|
|
%{desc} Specifically to add a high number of extra glyphs from popular
|
|
'iconic fonts' such as Font Awesome, Devicons, Octicons, and others.
|
|
|
|
%{lua:
|
|
local desc = rpm.expand("%desc")
|
|
for font in (rpm.expand("%flist")):gmatch("[^ ]+") do
|
|
print("%package -n "..font:lower().."-nerd-fonts\n")
|
|
print("Summary:\tPatched Nerd fonts: "..font)
|
|
print("\n%description -n "..font:lower().."-nerd-fonts\n")
|
|
print(desc..". The package contains the patched version of "..font..".\n")
|
|
end
|
|
}
|
|
|
|
%global debug_package %nil
|
|
|
|
%prep
|
|
cp %SOURCE0 .
|
|
cp %SOURCE1 .
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %buildroot/usr/share/fonts/nerd-fonts/
|
|
%{lua:
|
|
local dest = rpm.expand("%buildroot/usr/share/fonts/nerd-fonts/");
|
|
local n = 2;
|
|
for font in (rpm.expand("%flist")):gmatch("[^ ]+") do
|
|
local src = rpm.expand("%SOURCE"..n)
|
|
print("unzip "..src.." -d "..dest..font.." &\n")
|
|
n = n + 1
|
|
end
|
|
}
|
|
wait
|
|
|
|
find %buildroot/usr/share/fonts/nerd-fonts/ -name "* Windows Compatible.*" -delete &
|
|
find %buildroot/usr/share/fonts/nerd-fonts/ -name "*.txt" -delete &
|
|
find %buildroot/usr/share/fonts/nerd-fonts/ -name "readme.md" -delete &
|
|
wait
|
|
|
|
|
|
%files
|
|
%doc readme.md
|
|
%license LICENSE
|
|
|
|
%{lua:
|
|
for font in (rpm.expand("%flist")):gmatch("[^ ]+") do
|
|
print("%files -n "..font:lower().."-nerd-fonts\n")
|
|
print("%doc readme.md\n")
|
|
print("%license LICENSE\n")
|
|
print("/usr/share/fonts/nerd-fonts/"..font.."\n")
|
|
end
|
|
}
|
|
|
|
|
|
%changelog
|
|
* Wed Jan 4 2023 madonuko <mado@fyralabs.com> - 2.2.2-1
|
|
- Initial package
|