summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorzxp198210052023-03-02 10:07:41 +0800
committerzxp198210052023-03-02 10:07:41 +0800
commit4a35910cb243b9300e6ebb6ad0e5f9520bb3ed5c (patch)
tree0bc210abb8b5eb4ebee81ce1e8147fabb21d1943
downloadaur-4a35910cb243b9300e6ebb6ad0e5f9520bb3ed5c.tar.gz
first release
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD18
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..5c56b6428667
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = otf-cjk-standards-logo-font
+ pkgdesc = Logos for standards used in Unicode CJK
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://github.com/NightFurySL2001/cjk-standards-logo
+ arch = any
+ license = CC0-1.0
+ source = CJKStandardLogos.otf::https://github.com/NightFurySL2001/cjk-standards-logo/raw/main/CJKStandardLogos.otf
+ sha256sums = 34a561fd82940782d509f51226e72935f2b6be890ec16ad7ad2832036d8e28c0
+
+pkgname = otf-cjk-standards-logo-font
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..aaf7b835b99d
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
+pkgname=otf-cjk-standards-logo-font
+pkgver=1.0
+pkgdesc="Logos for standards used in Unicode CJK"
+pkgrel=1
+arch=(any)
+url='https://github.com/NightFurySL2001/cjk-standards-logo'
+license=(CC0-1.0)
+depends=()
+makedepends=()
+source=(
+ "CJKStandardLogos.otf::${url}/raw/main/CJKStandardLogos.otf"
+)
+sha256sums=('34a561fd82940782d509f51226e72935f2b6be890ec16ad7ad2832036d8e28c0')
+package() {
+ install -dm755 "${pkgdir}/usr/share/fonts/OTF"
+ cp "${srcdir}/CJKStandardLogos.otf" "${pkgdir}/usr/share/fonts/OTF"
+}