mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 11:47:14 +08:00
19 lines
441 B
Bash
19 lines
441 B
Bash
|
# Platform packages for Chakra
|
||
|
|
||
|
pkgname=ttf-lklug
|
||
|
pkgver=1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Unicode sinhala font"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://sinhala.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=('fontconfig' 'xorg-font-utils')
|
||
|
install=ttf.install
|
||
|
source=(http://sinhala.sourceforge.net/files/lklug.ttf)
|
||
|
md5sums=('3bfe4e498d6daa90a4ed956daaa10fef')
|
||
|
|
||
|
build() {
|
||
|
mkdir -p $pkgdir/usr/share/fonts/TTF
|
||
|
cp $srcdir/lklug.ttf $pkgdir/usr/share/fonts/TTF
|
||
|
}
|