mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
27 lines
829 B
Bash
27 lines
829 B
Bash
#
|
|
# 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-freefont
|
|
pkgver=20100919
|
|
pkgrel=1
|
|
pkgdesc="A set of free high-quality TrueType fonts covering the UCS character set"
|
|
arch=('any')
|
|
url="http://www.nongnu.org/freefont/"
|
|
license=('GPL')
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
install=ttf-freefont.install
|
|
source=(http://ftp.gnu.org/gnu/freefont/freefont-ttf-$pkgver.tar.gz)
|
|
md5sums=('33d96c755d0a6f585bc917f08cbddf66')
|
|
|
|
build() {
|
|
cd "${srcdir}/freefont-${pkgver}"
|
|
install -d "$pkgdir/usr/share/fonts/TTF"
|
|
install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF/" || return 1
|
|
}
|