mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
26 lines
837 B
Bash
26 lines
837 B
Bash
pkgname=ttf-vlgothic
|
|
pkgver=20141206
|
|
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://jaist.dl.sourceforge.jp/vlgothic/62375/VLGothic-${pkgver}.tar.xz")
|
|
sha256sums=('982040db2f9cb73d7c6ab7d9d163f2ed46d1180f330c9ba2fae303649bf8102d')
|
|
|
|
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"
|
|
}
|