core/ttf-vlgothic/PKGBUILD

26 lines
837 B
Bash
Raw Normal View History

2011-03-25 02:01:30 +08:00
pkgname=ttf-vlgothic
2015-07-17 21:23:15 +08:00
pkgver=20141206
2011-03-25 02:01:30 +08:00
pkgrel=1
pkgdesc="Japanese TrueType fonts from Vine Linux"
arch=('any')
url="http://vlgothic.dicey.org/"
license=('custom')
depends=('fontconfig' 'xorg-font-utils')
2012-09-27 01:12:54 +08:00
install=$pkgname.install
2015-07-17 21:23:15 +08:00
source=("http://jaist.dl.sourceforge.jp/vlgothic/62375/VLGothic-${pkgver}.tar.xz")
sha256sums=('982040db2f9cb73d7c6ab7d9d163f2ed46d1180f330c9ba2fae303649bf8102d')
2011-03-25 02:01:30 +08:00
package() {
2012-09-27 01:12:54 +08:00
cd "${srcdir}/VLGothic"
2011-03-25 02:01:30 +08:00
2012-09-27 01:12:54 +08:00
install -d "${pkgdir}/usr/share/fonts/TTF"
install -m0644 *.ttf "${pkgdir}/usr/share/fonts/TTF"
2011-03-25 02:01:30 +08:00
2012-09-27 01:12:54 +08:00
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"
2011-03-25 02:01:30 +08:00
}