Package Details: ttf-jetbrains-maple-mono-nf-xx-xx 1.2304.76-1

Git Clone URL: https://aur.archlinux.org/ttf-jetbrains-maple-mono-nf-xx-xx.git (read-only, click to copy)
Package Base: ttf-jetbrains-maple-mono-nf-xx-xx
Description: JetBrains Maple Mono: The free and open-source font fused with JetBrains Mono & Maple Mono
Upstream URL: https://github.com/SpaceTimee/Fusion-JetBrainsMapleMono
Licenses: OFL
Submitter: baddate
Maintainer: baddate
Last Packager: baddate
Votes: 3
Popularity: 1.83
First Submitted: 2025-03-14 07:12 (UTC)
Last Updated: 2025-08-26 09:17 (UTC)

Latest Comments

Cmd-GZ commented on 2026-05-06 13:09 (UTC)

现在这个字体已经更新到了1.2304.79 但改包还没有同步更新 我试着改了下PKGBUILD使得它能安装最新的版本 希望能更新

# Maintainer: Mercas <me@smj.im>

pkgname=ttf-jetbrains-maple-mono-nf-xx-xx
pkgver="1.2304.79"
pkgrel=1
pkgdesc="JetBrains Maple Mono: The free and open-source font fused with JetBrains Mono & Maple Mono"
arch=('any')
url="https://github.com/SpaceTimee/Fusion-JetBrainsMapleMono"
license=('OFL')
source=("https://github.com/SpaceTimee/Fusion-JetBrainsMapleMono/releases/download/${pkgver}/JetBrainsMapleMono-NF-XX-XX-XX.zip")
sha256sums=('fb5e66ca2b8a59eb11bc6ee8a389fa37427d58be60779f8042e331f208772c98')

package() {
  _fontname=JetBrains-Maple-Mono-NF-XX-XX-XX
  # Create font directory
  install -dm755 "$pkgdir/usr/share/fonts/TTF"

  # Install all font files
  for font in *.ttf; do
    install -Dm644 "$font" "$pkgdir/usr/share/fonts/TTF/${_fontname}/$font"
  done

  # Install license file
  install -Dm644 "LICENSE.txt" "$pkgdir/usr/share/licenses/${_fontname}/LICENSE.txt"
}