blob: 7e77fb2348d8bdf52b3c141c6bde23ef58b617bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Tx Drug Database"
SECTION = "opie/applications"
PRIORITY = "optional"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
LICENSE = "GPL"
DEPENDS = "sqlite"
PR = "r1"
SRC_URI = "http://teax.sourceforge.net/txdrug-${PV}.tar.gz \
file://${FILESDIR}/${palmtopdir}"
S = "${WORKDIR}/txdrug-tar"
inherit palmtop
do_install() {
install -d ${D}${palmtopdir}
cp -dfr `ls -dp ${WORKDIR}/${palmtopdir}/*|grep -v SCCS` ${D}${palmtopdir}/
install -D -m 755 txdrug ${D}${palmtopdir}/bin/txdrug
}
|