mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
599 B
Bash
19 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/
|
|
}
|