mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:14:36 +08:00
26 lines
928 B
Bash
26 lines
928 B
Bash
pkgname=ttf-indic-otf
|
|
pkgver=0.2
|
|
pkgrel=2
|
|
pkgdesc='Indic Opentype Fonts collection'
|
|
url='http://www.indlinux.org/wiki/index.php/Downloads'
|
|
license=('GPL')
|
|
arch=('any')
|
|
depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 'fontconfig')
|
|
install=install
|
|
source=("http://www.indlinux.org/downloads/files/indic-otf-${pkgver}.tar.gz")
|
|
sha1sums=('0f7ae06343a6cc757c20f5eb5b637654146e60a1')
|
|
|
|
package() {
|
|
cd "${srcdir}"/indic/OpenType
|
|
install -d "${pkgdir}"/usr/share/fonts/TTF
|
|
install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF
|
|
|
|
# Remove those fonts are already included in ttf-indic-fonts.
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/LikhanNormal.ttf
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/MuktiNarrow.ttf
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/MuktiNarrowBold.ttf
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/Pothana2000.ttf
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/ani.ttf
|
|
rm -f ${pkgdir}/usr/share/fonts/TTF/padmaa-Medium-0.5.ttf
|
|
}
|