blob: 7898eb437c235dc5482c3f3c8a31c107bd0cc3e4 (
plain)
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
|
DESCRIPTION = "ZauRSS is an RSS aggregator for Qtopia. It can manage multiple RSS feeds. \
It can also work with NetFront3, and you can see RDF items with it. "
SECTION = "opie/applications"
PRIORITY = "optional"
LICENSE = "GPL"
HOMEPAGE = "http://www.daionet.gr.jp/~knok/software/zaurss/"
APPNAME = "zaurss"
APPTYPE = "binary"
APPDESKTOP = "${WORKDIR}"
PR = "r0"
SRC_URI = "http://www.daionet.gr.jp/~knok/software/zaurss/zaurss-${PV}.tar.gz"
inherit opie
OE_QMAKE_INCDIR_QT = "${STAGING_INCDIR}/qpe"
EXTRA_QMAKEVARS_POST = "INCLUDEPATH=dialog \
INCLUDEPATH+=qhttp \
INCLUDEPATH+=${QTDIR}/include"
do_configure_prepend() {
rm -f Makefile
find . -name "moc*"|xargs rm -f
}
do_install () {
install -d ${D}/${palmtopdir}/pics/${APPNAME}/
install -m 0644 ${WORKDIR}/*.png ${D}/${palmtopdir}/pics/
}
|