File: README.debian-devel

package info (click to toggle)
dtm 0.4.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 508 kB
  • ctags: 67
  • sloc: perl: 1,348; sh: 61; makefile: 45
file content (17 lines) | stat: -rw-r--r-- 545 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
If you are a debian developer and have a package that install
type1 fonts you can use dtm to install them by putting the
fonts in /usr/share/fonts/type1/outlines, and an appropriate
catalog snippet (see /usr/doc/dtm/examples) in 
/usr/lib/dtm/catalogs/type1. Then call dtm in your postinst
script:

if [ -x /usr/bin/dtm ] then
  dtm --add /usr/lib/dtm/catalogs/type1/<your snippet>
fi

To remove the fonts just call dtm in the prerm (and not in postrm):

if [ -x /usr/bin/dtm ] then
  dtm --purge /usr/lib/dtm/catalogs/type1/<your snippet>
fi