File: debian-ubuntu-install.txt

package info (click to toggle)
fontmatrix 0.9.100%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,760 kB
  • sloc: cpp: 41,105; ansic: 14,675; python: 535; xml: 273; javascript: 267; makefile: 117; sh: 97; awk: 46
file content (39 lines) | stat: -rwxr-xr-x 1,021 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

Step-by-step instructions to install fontmatrix from source on Debian and Ubuntu:

first we install the compilation metapackage by typing:
 sudo apt-get install build-essential

then we install the various build dependencies already known by the package database by typing:
  sudo apt-get build-dep fontmatrix

then we add a few extra dependencies added in the svn version of fontmatrix by typing:
  sudo apt-get install libqt4-sql-sqlite python-dev libicu-dev 

then we retrive the source code by typing:
  sudo apt-get install git 
  git clone https://github.com/fontmatrix/fontmatrix.git

then we build from source by typing:  
  cd fontmatrix
  mkdir  build
  cd build
  cmake .. -DCMAKE_BUILD_TYPE=Debug -DWANT_PYTHONQT:bool=true -DWANT_ICU:bool=true -DWANT_HARFBUZZ:bool=true 
  make 


then we install the compiled version locally by typing:  
  sudo make install

this will move the files to /usr/local/


to uninstall all files written in the manifest you can type:
 sudo xargs rm < install_manifest.txt