mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:04:43 +08:00
20 lines
661 B
Bash
20 lines
661 B
Bash
|
pkgname=ttf-chromeos-fonts
|
||
|
_pkgname=croscorefonts-1.23.0
|
||
|
pkgver=1.23.0
|
||
|
pkgrel=3
|
||
|
depends=('fontconfig' 'xorg-font-utils')
|
||
|
conflicts=('ttf-google-webfonts')
|
||
|
pkgdesc="Chrome OS true type fonts: Arimo, Tinos and Cousine"
|
||
|
arch=('any')
|
||
|
license=('apache')
|
||
|
source=(http://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/croscorefonts-${pkgver}.tar.gz)
|
||
|
url="http://code.google.com/p/chromium-os/issues/detail?id=5287"
|
||
|
install=$pkgname.install
|
||
|
sha256sums=('b469b5457b093a9d8878ef6ff6868f54e258441b88983b1866f64c8995584b4c')
|
||
|
|
||
|
package() {
|
||
|
mkdir -p ${pkgdir}/usr/share/fonts/TTF
|
||
|
install -m644 ${srcdir}/${_pkgname}/*.ttf ${pkgdir}/usr/share/fonts/TTF
|
||
|
}
|
||
|
|