mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
20 lines
599 B
Bash
20 lines
599 B
Bash
![]() |
# $Id: PKGBUILD 37858 2009-05-04 01:33:53Z eric $
|
||
|
# Maintainer : Damir Perisa <damir.perisa@bluewin.ch>
|
||
|
pkgname=ttf-ubraille
|
||
|
pkgver=001.000
|
||
|
pkgrel=4
|
||
|
pkgdesc="Unicode TTFonts for braille"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://yudit.org/download/fonts/UBraille/"
|
||
|
license=('GPL')
|
||
|
depends=(xorg-fonts-encodings xorg-fonts-alias xorg-font-utils fontconfig)
|
||
|
install=ttf.install
|
||
|
source=("http://yudit.org/download/fonts/UBraille/UBraille.ttf")
|
||
|
md5sums=('4a8b8d06a4d6955a5c7319ce8440970c')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}
|
||
|
install -d ${pkgdir}/usr/share/fonts/TTF
|
||
|
install -m644 *.ttf ${pkgdir}/usr/share/fonts/TTF/
|
||
|
}
|