summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD17
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..6ce93a3f1492
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = ttf-noble-scarlet
+ pkgdesc = Microsoft's new Chinese font in Windows Insider 17063
+ pkgver = 11.3.0
+ pkgrel = 1
+ url = https://www.zhihu.com/question/67196637
+ arch = any
+ license = custom
+ depends = fontconfig
+ depends = xorg-font-utils
+ source = https://blog.deartanker.com/wp-content/uploads/win/NewMicrosoftYaHei.11.3.0.zip
+ md5sums = aa1bf102e5e7a35f035996b78438f26a
+
+pkgname = ttf-noble-scarlet
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..409d6bc590d6
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Robosky <fangyuhao0612@gmail.com>
+
+pkgname=ttf-noble-scarlet
+pkgver=11.3.0
+pkgrel=1
+pkgdesc="Microsoft's new Chinese font in Windows Insider 17063"
+arch=('any')
+url="https://www.zhihu.com/question/67196637"
+license=('custom')
+depends=('fontconfig' 'xorg-font-utils')
+source=("https://blog.deartanker.com/wp-content/uploads/win/NewMicrosoftYaHei.${pkgver}.zip")
+md5sums=('aa1bf102e5e7a35f035996b78438f26a')
+
+package() {
+ install -d "${pkgdir}/usr/share/fonts/TTC"
+ install -m644 "${srcdir}"/*/*.ttc "${pkgdir}/usr/share/fonts/TTC"
+}