mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
20 lines
597 B
Bash
20 lines
597 B
Bash
# Platform packages for Chakra
|
|
|
|
pkgname=ttf-khmer
|
|
pkgver=5.0
|
|
pkgrel=1
|
|
pkgdesc="TTFont collection for Khmer (Cambodia)"
|
|
arch=('any')
|
|
license=('LGPL')
|
|
url='http://www.khmeros.info/drupal612/en/taxonomy/term/53'
|
|
depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 'fontconfig')
|
|
install=ttf.install
|
|
source=("http://downloads.sourceforge.net/sourceforge/khmer/All_KhmerOS_${pkgver}.zip")
|
|
md5sums=('dc1ddeb526ccbc06603da880d1e89e7b')
|
|
|
|
package() {
|
|
cd ${srcdir}/All_KhmerOS_${pkgver}
|
|
install -dm755 ${pkgdir}/usr/share/fonts/TTF
|
|
install -m644 *.ttf ${pkgdir}/usr/share/fonts/TTF/
|
|
}
|