mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 15:04:37 +08:00
28 lines
888 B
Bash
28 lines
888 B
Bash
# see core for the history of the package, it has been moved to platform
|
|
# cross repo move is bad for history...
|
|
#
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
_pkgname=unifont
|
|
pkgname=bdf-${_pkgname}
|
|
pkgver=7.0.03
|
|
pkgrel=1
|
|
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/pub/${_pkgname}-${pkgver}/font-builds/${_pkgname}-${pkgver}.bdf.gz" 'LICENSE')
|
|
md5sums=('06942d44b12cc228814d85082916ef67'
|
|
'2bb5ee7b73893aa7c9fd837ff95d6b4d')
|
|
|
|
package() {
|
|
install -Dm644 ${srcdir}/${_pkgname}-${pkgver}.bdf \
|
|
${pkgdir}/usr/share/fonts/misc/unifont.bdf
|
|
|
|
# install LICENSE file
|
|
install -Dm644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
|