blob: f4d3dea26bf5bdf9cb15c356305ad479f13823f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ttf-linux-libertine
pkgver=4.7.5
pkgrel=0
pkgdesc="Serif (Libertine) and Sans Serif (Biolinum) OpenType fonts with large Unicode coverage"
url="http://linuxlibertine.sourceforge.net/"
arch="all"
license="GPL custom:OFL"
makedepends=
depends="fontconfig encodings mkfontdir mkfontscale"
install=
subpackages="$pkgname-doc"
source="http://downloads.sourceforge.net/sourceforge/linuxlibertine/LinLibertineFont-$pkgver-2.tgz"
_builddir="$srcdir"/LinLibertine
build () {
local f
# strip off the version numbers from the filenames.
cd "$_builddir"
for f in Fonts/*.ttf; do
mv $f ${f%-[0-9]*}.ttf
done
for f in Fonts/*.otf; do
mv $f ${f%-[0-9]*}.otf
done
}
package() {
cd "$_builddir"
install -d -m 755 "$pkgdir"/usr/share/fonts/OTF \
"$pkgdir"/usr/share/fonts/TTF
install -m644 Fonts/*.ttf "$pkgdir"/usr/share/fonts/TTF || return 1
install -m644 Fonts/*.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="789b4d8f0dd93b7234b7996e54a6a983 LinLibertineFont-4.7.5-2.tgz"
|