aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/txdrug/txdrug_0.1.bb
blob: 7864ccba76d888b624b95d0b7f28c1f37ed72f38 (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
DESCRIPTION = "Tx Drug Database"
SECTION = "opie/applications"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "sqlite"
PR = "r3"

SRC_URI = "http://teax.sourceforge.net/txdrug-${PV}.tar.gz \
           file://opt/QtPalmtop"
S = "${WORKDIR}/txdrug-tar"

inherit palmtop

EXTRA_QMAKEVARS_POST += "LIBS+=-lsqlite TARGET=txdrug"

do_configure_prepend() {
        rm -f Makefile && qmake -project
}

do_configure_append() {
        sed -i "s/\-I\/usr\/include\/sqlite\ //g" Makefile
}

do_install() {
        install -d ${D}${palmtopdir}
        cp -Pfr `ls -dp ${WORKDIR}/opt/QtPalmtop/*|grep -v SCCS` ${D}${palmtopdir}/
        install -D -m 755 txdrug ${D}${palmtopdir}/bin/txdrug
}