diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-09 18:16:21 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-09 18:16:21 +0000 |
commit | ab6a81e5ac7af3e373f9fe4a183c3a66f748dc84 (patch) | |
tree | 1901a2aca1d37452586a88a0931c9131066f3a4b /txdrug/txdrug_0.1.oe | |
parent | 61281b9bdaf7c47e0e340f9dc92229d30d82370c (diff) |
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
Diffstat (limited to 'txdrug/txdrug_0.1.oe')
-rw-r--r-- | txdrug/txdrug_0.1.oe | 18 |
1 files changed, 18 insertions, 0 deletions
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 <mickey@Vanille.de>" +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 +} |