24 lines
738 B
Plaintext
24 lines
738 B
Plaintext
# Description: Serif (Libertine) and Sans Serif (Biolinum) OpenType fonts with large Unicode coverage
|
|
# URL: http://linuxlibertine.sourceforge.net/
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: xorg-libx11 xorg-fontconfig
|
|
|
|
_reldate=2012_07_02
|
|
|
|
name=ttf-linux-libertine
|
|
version=5.3.0
|
|
release=1
|
|
|
|
source=("http://downloads.sourceforge.net/project/linuxlibertine/linuxlibertine/${version}/LinLibertine"{TTF,OTF}"_${version}_${_reldate}.tgz")
|
|
|
|
build() {
|
|
cd $SRC
|
|
install -dm755 $PKG/usr/share/fonts/{OTF,TTF}
|
|
install -m644 *.ttf $PKG/usr/share/fonts/TTF
|
|
install -m644 *.otf $PKG/usr/share/fonts/OTF
|
|
|
|
install -Dm644 OFL-1.1.txt $PKG/usr/share/licenses/$name/LICENSE
|
|
install -Dm644 LICENCE.txt $PKG/usr/share/licenses/$name/README
|
|
}
|
|
|