blob: c230a9dac5fe8b118502a62dee94a56fe1957935 (
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
31
32
|
DESCRIPTION = "RSS aggregator for Qtopia"
SECTION = "opie/applications"
LICENSE = "GPL"
AUTHOR = "Joe Rumsey <joe@rumsey.org>"
HOMEPAGE = "http://corsair.sf.net/"
RDEPENDS = "opie-pics"
FILE_PR = "r1"
inherit palmtop
SRC_URI = "${SOURCEFORGE_MIRROR}/corsair/corsair-${PV}.tar.gz \
file://corsair-opie.patch;patch=1"
S = "${WORKDIR}/corsair"
do_configure() {
}
do_compile() {
oe_runmake LIBS="-l${QT_LIBRARY} -lqpe"
}
do_install() {
install -d ${D}${palmtopdir}/pics/
install -d ${D}${palmtopdir}/apps/Applications/
install -d ${D}${palmtopdir}/bin
install -m 0644 ${S}/Corsair.png ${D}${palmtopdir}/pics/
install -m 0644 ${S}/corsair.desktop ${D}${palmtopdir}/apps/Applications/
install -m 0644 ${S}/icons/newfeed.png ${S}/icons/get.png ${D}${palmtopdir}/pics/
install -m 0755 ${S}/corsair ${D}${palmtopdir}/bin/
}
|