Joel Stanley | e8f268e | 2018-04-23 10:50:44 +0930 | [diff] [blame] | 1 | do_install () { |
Ed Tanous | 9936f86 | 2022-09-19 09:13:20 -0700 | [diff] [blame] | 2 | install -d ${D}${datadir}/fonts/ttf/ |
3 | for i in LiberationMono-Regular.ttf; do | ||||
4 | install -m 0644 $i ${D}${prefix}/share/fonts/ttf/${i} | ||||
5 | done | ||||
6 | install -d ${D}${sysconfdir}/fonts/conf.d/ | ||||
7 | install -m 0644 ${WORKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ | ||||
Joel Stanley | e8f268e | 2018-04-23 10:50:44 +0930 | [diff] [blame] | 8 | } |