Search Criteria
Package Details: ttf-nanumgothic_coding 2.5-2
Git Clone URL: | https://aur.archlinux.org/ttf-nanumgothic_coding.git (read-only, click to copy) |
---|---|
Package Base: | ttf-nanumgothic_coding |
Description: | Nanum series fixed width TrueType fonts |
Upstream URL: | https://github.com/naver/nanumfont |
Licenses: | |
Submitter: | None |
Maintainer: | darehanl |
Last Packager: | darehanl |
Votes: | 24 |
Popularity: | 0.000003 |
First Submitted: | 2009-01-22 14:41 |
Last Updated: | 2020-06-30 13:56 |
Latest Comments
darehanl commented on 2020-06-30 13:57
Updated PKGBUILD for those who want only the NanumGothicCoding fonts, but this package is effectively superseded by ttf-nanum, and should not be installed in parallel.
duo310 commented on 2016-12-27 05:05
the source file is no longer available thus this package is not gonna work
need some update
darehanl commented on 2011-06-15 03:27
New PKGBUILD for 2.0
# Contributor: atie H. <atie.at.matrix@gmail.com>
pkgname=ttf-nanumgothic_coding
pkgver=2.0
pkgrel=1
pkgdesc="Nanum series fixed width TrueType fonts"
arch=('any')
url="http://dev.naver.com/projects/nanumfont"
license=('OFL')
depends=('fontconfig' 'xorg-font-utils')
install=ttf.install
source=('http://dev.naver.com/frs/download.php/441/NanumGothicCoding-2.0.zip')
md5sums=('6214a5844454c96faeac9a60539c7daf')
build() {
cd $pkgdir
install -d -m 755 usr/share/fonts/TTF || return 1
# Use hack to rename to english filenames
install -m 644 ${srcdir}/*Bold.ttf usr/share/fonts/TTF/NanumGothicCoding-Bold.ttf || return 1
rm ${srcdir}/*Bold.ttf
install -m 644 ${srcdir}/*.ttf usr/share/fonts/TTF/NanumGothicCoding.ttf || return 1
}