2013-11-24 17:00:06 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# choose package target based on Distro
|
|
|
|
case $( lsb_release -si ) in
|
|
|
|
Ubuntu|Debian) pkg=deb ;;
|
|
|
|
Fedora|RedHat|SLES) pkg=rpm ;;
|
|
|
|
esac
|
|
|
|
# But make it overridable from outside:
|
|
|
|
pkg=${PKG:-${pkg}}
|
|
|
|
|
2014-01-10 16:27:35 +01:00
|
|
|
name='fantasque-sans'
|
2014-07-21 09:15:11 +02:00
|
|
|
version='1.6.5'
|
2013-11-24 17:00:06 +01:00
|
|
|
desc='A font family with a great monospaced variant for programmers.'
|
2014-01-10 16:27:35 +01:00
|
|
|
url=http://openfontlibrary.org/en/font/fantasque-sans
|
2013-11-24 17:00:06 +01:00
|
|
|
|
|
|
|
fpm -s dir -t ${pkg} -a all \
|
|
|
|
-n ${name}-fonts \
|
|
|
|
-v ${version} \
|
|
|
|
--url ${url} \
|
|
|
|
--description "${desc}" \
|
|
|
|
--license OFL \
|
2014-01-24 12:27:29 +01:00
|
|
|
FantasqueSansMono-Regular.ttf=/usr/share/fonts/truetype/${name}/ \
|
|
|
|
FantasqueSansMono-Bold.ttf=/usr/share/fonts/truetype/${name}/ \
|
|
|
|
FantasqueSansMono-RegItalic.ttf=/usr/share/fonts/truetype/${name}/ \
|
2014-01-29 07:00:43 +01:00
|
|
|
FantasqueSansMono-BoldItalic.ttf=/usr/share/fonts/truetype/${name}/ \
|
2014-01-24 12:27:29 +01:00
|
|
|
OTF/FantasqueSansMono-Regular.otf=/usr/share/fonts/opentype/${name}/ \
|
|
|
|
OTF/FantasqueSansMono-Bold.otf=/usr/share/fonts/opentype/${name}/ \
|
|
|
|
OTF/FantasqueSansMono-RegItalic.otf=/usr/share/fonts/opentype/${name}/ \
|
2014-01-29 07:00:43 +01:00
|
|
|
OTF/FantasqueSansMono-BoldItalic.otf=/usr/share/fonts/opentype/${name}/ \
|
2013-11-24 17:00:06 +01:00
|
|
|
OFL.txt=/usr/share/doc/${name}/copyright \
|
|
|
|
README.md=/usr/share/doc/${name}/ \
|
|
|
|
Specimen=/usr/share/doc/${name}/
|