blob: 642e942dd98ba8bc592e1086ae5012a6d12d567f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "FreeMono font - QPF Edition"
SECTION = "opie/fonts"
PRIORITY = "optional"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
LICENSE = "GPL"
HOMEPAGE = "http://savannah.nongnu.org/projects/freefont/"
PACKAGE_ARCH = "all"
SRC_URI = "http://ewi546.ewi.utwente.nl/mirror/hrw-oe-sources/${PN}-${PV}.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
|