blob: 5ce0c06296958698810004adcba017484e1f0fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Utopia fonts - QPF Edition"
SECTION = "opie/fonts"
PRIORITY = "optional"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
LICENSE = "GPL QPL"
HOMEPAGE = "http://www.pobox.sk/~mico/zaurus.html"
PACKAGE_ARCH = "all"
PR = "r1"
SRC_URI = "http://ewi546.ewi.utwente.nl/mirror/hrw-oe-sources/qpf-utopia.tar.bz2"
S = "${WORKDIR}/utopia"
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
|