2010-11-14 06:20:42 +08:00
|
|
|
#
|
|
|
|
# Core 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=bdf-unifont
|
|
|
|
pkgver=5.1.20080820
|
2011-07-22 00:24:09 +08:00
|
|
|
pkgrel=2
|
2010-11-14 06:20:42 +08:00
|
|
|
pkgdesc="GNU Unifont Glyphs"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('custom' 'GPL2')
|
|
|
|
url="http://unifoundry.com/unifont.html"
|
|
|
|
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
|
|
|
|
install=unifont.install
|
|
|
|
source=('http://unifoundry.com/unifont-5.1.20080820.bdf.gz' 'LICENSE')
|
|
|
|
md5sums=('6b8263ceccef33bd633aa019d74b7943'
|
|
|
|
'64da5a96d6789d29d485cd67a43bc547')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
install -Dm644 ${srcdir}/unifont-5.1.20080820.bdf \
|
|
|
|
${pkgdir}/usr/share/fonts/misc/unifont.bdf
|
|
|
|
|
|
|
|
# install LICENSE file
|
|
|
|
install -Dm644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
|
|
}
|
|
|
|
|