mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 10:37:14 +08:00
23 lines
634 B
Bash
23 lines
634 B
Bash
|
# Platform packages for Chakra
|
||
|
|
||
|
pkgname=ttf-indic-otf
|
||
|
pkgver=0.2
|
||
|
pkgrel=1
|
||
|
pkgdesc='Indic Opentype Fonts collection'
|
||
|
url='http://www.indlinux.org/wiki/index.php/Downloads'
|
||
|
license=('GPL')
|
||
|
arch=('any')
|
||
|
replaces=('ttf-indic-fonts')
|
||
|
conflicts=('ttf-indic-fonts')
|
||
|
depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 'fontconfig')
|
||
|
source=("http://www.indlinux.org/downloads/files/indic-otf-${pkgver}.tar.gz")
|
||
|
sha1sums=('0f7ae06343a6cc757c20f5eb5b637654146e60a1')
|
||
|
|
||
|
install=install
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}"/indic/OpenType
|
||
|
install -d "${pkgdir}"/usr/share/fonts/TTF
|
||
|
install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF
|
||
|
}
|