~ubuntu-branches/ubuntu/quantal/ttf-freefont/quantal

« back to all changes in this revision

Viewing changes to debian/scripts/convertfonts.sh

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2006-11-27 07:17:24 UTC
  • mfrom: (1.1.9 feisty)
  • Revision ID: james.westby@ubuntu.com-20061127071724-p2qucq9vfba4r2iv
Tags: 20060501cvs-10
Strip Hebrew glyphs in the udeb on request of the D-I team
Closes: #400516

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
CONVERTFONT=$(pwd)/debian/scripts/ConvertFont
 
4
SRC="sfd"
 
5
TARGET="TTF"
 
6
test ! -d ${TARGET} && mkdir ${TARGET}
 
7
 
 
8
FONTS=`cd ${SRC} && find . -name "*.sfd"`
 
9
for font in ${FONTS}; do
 
10
        echo $font
 
11
        (cd ${TARGET} && ${CONVERTFONT} ../${SRC}/${font} )
 
12
done