# Maintainer: Natanael Copa pkgname=ttf-linux-libertine pkgver=4.4.1 pkgrel=0 pkgdesc="Serif (Libertine) and Sans Serif (Biolinum) OpenType fonts with large Unicode coverage" url="http://linuxlibertine.sourceforge.net/" license="GPL custom:OFL" makedepends= depends="fontconfig encodings mkfontdir mkfontscale" install= subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/sourceforge/linuxlibertine/LinLibertineFont-$pkgver.tgz" build () { local f # strip off the version numbers from the filenames. cd "$srcdir"/LinLibertineFont for f in *.ttf; do mv $f ${f%-[0-9]*}.ttf done for f in *.otf; do mv $f ${f%-[0-9]*}.otf done } package() { cd "$srcdir"/LinLibertineFont install -d -m 755 "$pkgdir"/usr/share/fonts/OTF \ "$pkgdir"/usr/share/fonts/TTF install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF || return 1 install -m644 *.otf "$pkgdir"/usr/share/fonts/OTF || return 1 install -D -m644 OFL.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE || return 1 install -D -m644 LICENCE.txt "$pkgdir"/usr/share/licenses/$pkgname/README || return 1 } md5sums="297f537b31693c92c1aceaa0aeccb115 LinLibertineFont-4.4.1.tgz"