blob: 3db82c9c14f6ba2142e5a74e470eb17ff9212e5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SECTION = "opie/fonts"
PRIORITY = "optional"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
LICENSE = "Bitstream Vera"
HOMEPAGE = "http://dejavu.sourceforge.net/wiki/index.php/Main_Page"
PACKAGE_ARCH = "all"
PR = "r1"
SRC_URI = "http://www.hrw.one.pl/_pliki/oe/files/${PN}-${PV}-${PR}.tar.bz2"
S = "${WORKDIR}/${PN}"
do_install () {
install -d ${D}${palmqtdir}/lib/fonts/
for i in *.qpf; do
install -m 644 $i ${D}${palmqtdir}/lib/fonts/${i}
done
}
inherit qpf
|