2011-03-25 16:35:41 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=ttf-indic-fonts
|
2014-10-08 02:55:16 +08:00
|
|
|
pkgver=0.5.14
|
2011-03-25 16:35:41 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A set of free high-quality TrueType fonts covering for every official Indian language"
|
|
|
|
arch=('any')
|
|
|
|
url="http://www.chakra-project.org"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
|
|
install=ttf-indic-fonts.install
|
2014-10-08 02:55:16 +08:00
|
|
|
source=("http://archive.ubuntu.com/ubuntu/pool/main/t/${pkgname}/${pkgname}_${pkgver}ubuntu1.tar.gz")
|
|
|
|
md5sums=('909b8ed7fda39b418ffcf11f8bc9072b')
|
|
|
|
conflicts=('ttf-malayalam-fonts')
|
|
|
|
provides=('ttf-malayalam-fonts')
|
|
|
|
replace=('ttf-malayalam-fonts')
|
2011-03-25 16:35:41 +08:00
|
|
|
|
2014-10-08 02:55:16 +08:00
|
|
|
package() {
|
|
|
|
cd "${srcdir}/$pkgname-${pkgver}ubuntu1"
|
2011-03-25 16:35:41 +08:00
|
|
|
install -m755 -d "${pkgdir}/usr/share/fonts/TTF"
|
|
|
|
install -m644 */*.ttf "${pkgdir}/usr/share/fonts/TTF/"
|
|
|
|
|
|
|
|
install -m755 -d "${pkgdir}/etc/fonts/conf.avail"
|
|
|
|
install -m644 */*.conf "${pkgdir}/etc/fonts/conf.avail/"
|
|
|
|
}
|