aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-10-11 14:17:32 -0700
committerFuwn <[email protected]>2023-10-11 14:17:32 -0700
commit048c8e546511cc020fe699bc1256f457da3eb820 (patch)
tree1f21be73cd0d687c1668432290f41f87e35b12ea
parentMinor fix (diff)
downloadttf-monapo-048c8e546511cc020fe699bc1256f457da3eb820.tar.xz
ttf-monapo-048c8e546511cc020fe699bc1256f457da3eb820.zip
fix(pkgbuild): update uri
-rw-r--r--.SRCINFO8
-rw-r--r--.gitignore6
-rw-r--r--PKGBUILD15
3 files changed, 16 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4000daf..76eda02 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,14 +2,12 @@ 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/
+ 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
+ source = https://raw.githubusercontent.com/utuhiro78/modified-fonts/main/monapo-20170722.tar.xz
+ sha256sums = f1cf49006f9ef3079e95b2808c8727727aa664006502c9b52fa268bbe901d3cd
pkgname = ttf-monapo
-
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e54b8d8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+# makepkg
+/src/
+/pkg/
+*.tar.xz
+*.tar.gz
+*.tar.zst
diff --git a/PKGBUILD b/PKGBUILD
index a5eba0f..991408e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,18 +5,17 @@ pkgver=20170722
pkgrel=2
pkgdesc="A Japanese font for viewing Japanese ascii arts properly"
arch=('any')
-url="https://osdn.net/users/utuhiro/pf/utuhiro/files/"
+url="https://github.com/utuhiro78/modified-fonts"
license=('custom')
depends=('fontconfig' 'xorg-mkfontscale')
-source=(https://osdn.net/users/utuhiro/pf/utuhiro/dl/monapo-${pkgver}.tar.bz2)
-md5sums=('f6bdac3e091923b6d726c4d0844ad110')
-b2sums=('1fcb1b0599e9268aa6e004bcf645be997adc340bfe4e192064354e64d830f7d231aa5919ff839dac4ca2f7f1e43a9e85e9aa43ea0153d47d59d658cecce2330e')
+source=(https://raw.githubusercontent.com/utuhiro78/modified-fonts/main/monapo-20170722.tar.xz)
+sha256sums=('f1cf49006f9ef3079e95b2808c8727727aa664006502c9b52fa268bbe901d3cd')
package() {
- cd ${srcdir}/monapo-${pkgver}
+ cd ${srcdir}/monapo-${pkgver}
- install -D -m644 monapo.ttf ${pkgdir}/usr/share/fonts/TTF/monapo.ttf
+ install -D -m644 monapo.ttf ${pkgdir}/usr/share/fonts/TTF/monapo.ttf
- install -D -m644 ipagp00303/IPA_Font_License_Agreement_v1.0.txt \
- ${pkgdir}/usr/share/licenses/${pkgname}/COPYING_IPA.txt
+ install -D -m644 ipagp00303/IPA_Font_License_Agreement_v1.0.txt \
+ ${pkgdir}/usr/share/licenses/${pkgname}/COPYING_IPA.txt
}