blob: 5f4e5d500a765dbb88709189a7f0d7c767c71016 (
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
|
DESCRIPTION = "VisiScript is a simple graphical frontend for \
scripting languages like minscript, Python,Ruby, Perl or others. \
VisiScript runs on the Qtopia desktop environment of the Zaurus."
SECTION = "opie/applications"
DEPENDS = "qscintilla"
LICENSE = "GPL"
PR = "r1"
APPNAME = "visiscript"
APPTYPE = "binary"
APPDESKTOP = "${S}"
SRC_URI = "http://www.mneuroth.de/privat/zaurus/visiscript_src_${PV}.tar.gz \
file://qptrlist.h file://qcleanuphandler.h"
S = "${WORKDIR}/visiscript-${PV}"
inherit opie
QMAKE_PROFILES = "zvisiscript.pro"
EXTRA_QMAKEVARS_POST += "LIBS-=../qscintilla-1.60-gpl-1.3/qt/lib/libqscintilla_arm.a LIBS+=-lqscintilla"
export OE_QMAKE_LINK="${CXX}"
do_compile_prepend() {
install -m 0644 ${WORKDIR}/*.h ${S}
}
do_install() {
install -d ${D}${palmtopdir}/pics/
install -m 0644 Visiscript.png ${D}${palmtopdir}/pics
}
#FIXME: package help and translation
|