25 lines
670 B
Plaintext
25 lines
670 B
Plaintext
# URL: http://dejavu.sourceforge.net
|
|
# Description: A font family based on the Bitstream Vera Fonts
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
|
|
name=x11-fonts-dejavu
|
|
version=2.32
|
|
release=1
|
|
source=(http://download.sourceforge.net/dejavu/dejavu-fonts-ttf-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd dejavu-fonts-ttf-$version
|
|
mkdir -p $PKG/usr/share/fonts/dejavu $PKG/etc/fonts/conf.{d,avail}
|
|
install -o root -g root -m 0644 ttf/*.ttf \
|
|
$PKG/usr/share/fonts/dejavu/
|
|
|
|
cd fontconfig
|
|
|
|
install -o root -g root -m644 *.conf \
|
|
$PKG/etc/fonts/conf.avail/
|
|
|
|
for x in *.conf; do
|
|
ln -s ../conf.avail/$x $PKG/etc/fonts/conf.d/
|
|
done
|
|
}
|