blob: 2b6bfe0f9c31d46b36741916946d30da6fe6f3d8 (
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
33
34
35
|
DESCRIPTION = "RSS aggregator for Qtopia"
SECTION = "opie/applications"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
LICENSE = "GPL"
AUTHOR = "Joe Rumsey <joe@rumsey.org>"
HOMEPAGE = "http://corsair.sf.net/"
DEPENDS = "opie-pics"
RDEPENDS = "opie-pics"
PV = "0.2.0"
PR = "r4"
SRCDATE = "20050911"
#application was released 20050910 - next versions will be released as tarballs
#corsair-024.patch from 'mistermix' http://www.oesf.org/forums/index.php?showtopic=14661
inherit palmtop
SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/corsair;module=corsair \
file://corsair-024.patch;patch=1 \
file://corsair-opie.patch;patch=1"
S = "${WORKDIR}/corsair"
do_configure() {
}
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/
}
|