blob: beecbaec7f993a49e35aa184fdd71e8096a55da0 (
plain)
1 # Description: A set of monospaced OpenType fonts designed for coding environments
2 # URL: http://sourceforge.net/projects/sourcecodepro.adobe/
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Depends on: xorg-mkfontdir xorg-mkfontscale fontconfig
5
6 name=xorg-font-sourcecode-otf
7 version=1.017
8 release=1
9 source=(http://sourceforge.net/projects/sourcecodepro.adobe/files/SourceCodePro_FontsOnly-$version.zip)
10
11 build() {
12 cd SourceCodePro_FontsOnly-$version
13
14 install -d -m 0755 $PKG/usr/share/fonts/X11/OTF
15 install -m 0644 OTF/*.otf $PKG/usr/share/fonts/X11/OTF
16
17 }
|