summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorxiota2024-04-20 00:10:34 +0000
committerxiota2024-04-20 00:11:14 +0000
commit62d83b3ce48a0ed495f2a455cb7c6e6c2869cc88 (patch)
tree7842a940b47ca8a09bf69d7fe9f9b5e135e58603
parentfcebe67efb19f992d3d11403fe88a3f7dea49230 (diff)
downloadaur-62d83b3ce48a0ed495f2a455cb7c6e6c2869cc88.tar.gz
update source, metadata
-rw-r--r--.SRCINFO14
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD24
3 files changed, 20 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4000dafab488..720a5a81fb8e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,11 @@
pkgbase = ttf-monapo
pkgdesc = A Japanese font for viewing Japanese ascii arts properly
pkgver = 20170722
- pkgrel = 2
- url = https://osdn.net/users/utuhiro/pf/utuhiro/files/
+ pkgrel = 3
+ url = https://github.com/utuhiro78/modified-fonts
arch = any
- license = custom
- depends = fontconfig
- depends = xorg-mkfontscale
- source = https://osdn.net/users/utuhiro/pf/utuhiro/dl/monapo-20170722.tar.bz2
- md5sums = f6bdac3e091923b6d726c4d0844ad110
- b2sums = 1fcb1b0599e9268aa6e004bcf645be997adc340bfe4e192064354e64d830f7d231aa5919ff839dac4ca2f7f1e43a9e85e9aa43ea0153d47d59d658cecce2330e
+ license = IPA
+ source = https://github.com/utuhiro78/modified-fonts/raw/main/monapo-20170722.tar.xz
+ sha256sums = f1cf49006f9ef3079e95b2808c8727727aa664006502c9b52fa268bbe901d3cd
pkgname = ttf-monapo
-
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..018a3de08144
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!PKGBUILD
+!.SRCINFO
+!.gitignore
diff --git a/PKGBUILD b/PKGBUILD
index a5eba0f026f8..39b15a4bc24b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,20 @@
+# Maintainer:
# Contributor: noonov <noonov@gmail.com>
pkgname=ttf-monapo
pkgver=20170722
-pkgrel=2
+pkgrel=3
pkgdesc="A Japanese font for viewing Japanese ascii arts properly"
arch=('any')
-url="https://osdn.net/users/utuhiro/pf/utuhiro/files/"
-license=('custom')
-depends=('fontconfig' 'xorg-mkfontscale')
-source=(https://osdn.net/users/utuhiro/pf/utuhiro/dl/monapo-${pkgver}.tar.bz2)
-md5sums=('f6bdac3e091923b6d726c4d0844ad110')
-b2sums=('1fcb1b0599e9268aa6e004bcf645be997adc340bfe4e192064354e64d830f7d231aa5919ff839dac4ca2f7f1e43a9e85e9aa43ea0153d47d59d658cecce2330e')
+url="https://github.com/utuhiro78/modified-fonts"
+license=('IPA')
-package() {
- cd ${srcdir}/monapo-${pkgver}
-
- install -D -m644 monapo.ttf ${pkgdir}/usr/share/fonts/TTF/monapo.ttf
+_pkgsrc="monapo-$pkgver"
+_pkgext="tar.xz"
+source=("$url/raw/main/$_pkgsrc.$_pkgext")
+sha256sums=('f1cf49006f9ef3079e95b2808c8727727aa664006502c9b52fa268bbe901d3cd')
- install -D -m644 ipagp00303/IPA_Font_License_Agreement_v1.0.txt \
- ${pkgdir}/usr/share/licenses/${pkgname}/COPYING_IPA.txt
+package() {
+ cd "$_pkgsrc"
+ install -Dm644 monapo.ttf -t "$pkgdir/usr/share/fonts/TTF/"
}