mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:47:14 +08:00
33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor Julien Humbert <julroy67@gmail.com>
|
|
|
|
pkgname=ttf-vlgothic
|
|
pkgver=20120905
|
|
pkgrel=1
|
|
pkgdesc="Japanese TrueType fonts from Vine Linux"
|
|
arch=('any')
|
|
url="http://vlgothic.dicey.org/"
|
|
license=('custom')
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
install=$pkgname.install
|
|
source=("http://dl.sourceforge.jp/vlgothic/56782/VLGothic-${pkgver}.tar.bz2")
|
|
sha256sums=('f0739d485720749e2067aac5743c4834724a36ef9e34a5e84cc19dd3562d67ea')
|
|
|
|
package() {
|
|
cd "${srcdir}/VLGothic"
|
|
|
|
install -d "${pkgdir}/usr/share/fonts/TTF"
|
|
install -m0644 *.ttf "${pkgdir}/usr/share/fonts/TTF"
|
|
|
|
install -Dm0644 "LICENSE_E.mplus" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING_MPLUS.txt"
|
|
install -Dm644 README.sazanami \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING_SAZANAMI.txt"
|
|
install -Dm0644 LICENSE.en \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING_VLGOTHIC.txt"
|
|
}
|