From: Michael Lauer Date: Tue, 9 Mar 2004 18:16:21 +0000 (+0000) Subject: Merge bk://openembedded@openembedded.bkbits.net/packages X-Git-Tag: Release-2010-05/1~19976 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab6a81e5ac7af3e373f9fe4a183c3a66f748dc84;p=openembedded.git Merge bk://openembedded@openembedded.bkbits.net/packages into gandalf.tm.informatik.uni-frankfurt.de:/usr/local/projects/packages 2004/03/09 19:16:15+01:00 uni-frankfurt.de!mickeyl fix txdrug: Don't use cp -a when copying things from FILESDIR. You'll end up with multiple SCCS directories which confuses BitKeeper BKrev: 404e09f5UZLILdjZosIMW9L5UX4Uiw --- diff --git a/txdrug/txdrug_0.1.oe b/txdrug/txdrug_0.1.oe index e69de29bb2..7dd31d94c6 100644 --- a/txdrug/txdrug_0.1.oe +++ b/txdrug/txdrug_0.1.oe @@ -0,0 +1,18 @@ +DESCRIPTION=Tx Drug Database +SECTION="base" +PRIORITY="optional" +MAINTAINER="Michael Lauer " +LICENSE="GPL" +RDEPENDS=libqpe sqlite +DEPENDS=virtual/libc virtual/libqpe sqlite + +SRC_URI = http://teax.sourceforge.net/${P}.tar.gz +S = ${WORKDIR}/${PN}-tar + +inherit palmtop + +do_install() { + install -d ${D} + cp -dfR `ls -dp ${FILESDIR}/$u/*|grep -v SCCS` ${D}/$u/ + install -D -m 755 txdrug ${D}/opt/QtPalmtop/bin/txdrug +}