diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-29 01:29:03 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-29 01:29:03 +0000 |
commit | 7a3f53d90ed42227576182ef8440b6b21055a494 (patch) | |
tree | 35260c3353a787cbf798968095ef3697dfb9982d /tslib | |
parent | 56a2c05078e0f7df9dac57d9eba63cde83beeece (diff) |
Merge http://openembedded.bkbits.net/packages
into beast.local:/home/kergoth/code/packages
2004/05/28 14:20:41-04:00 local!kergoth
Move tslib_cvs.oe into tslib/.
BKrev: 40b7e75fJOCn5JTg3QH5U_CTySnm9g
Diffstat (limited to 'tslib')
-rw-r--r-- | tslib/tslib_cvs.oe | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tslib/tslib_cvs.oe b/tslib/tslib_cvs.oe index e69de29bb2..e75a4eabaf 100644 --- a/tslib/tslib_cvs.oe +++ b/tslib/tslib_cvs.oe @@ -0,0 +1,23 @@ +PV = "0.1cvs${CVSDATE}" + +DESCRIPTION = "tslib is a touchscreen access library." + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=apps/tslib" +S = "${WORKDIR}/tslib" + +inherit autotools + +EXTRA_OECONF = "--enable-shared" + +do_stage () { + oe_libinstall -so -C src libts-0.0 ${STAGING_LIBDIR} + ln -sf libts-0.0.so ${STAGING_LIBDIR}/libts.so + install -m 0644 src/tslib.h ${STAGING_INCDIR}/ + install -m 0644 src/tslib-private.h ${STAGING_INCDIR}/ +} + +do_install_prepend () { + oe_machinstall -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf +} + +FILES_tslib_append = " ${datadir}/ts/plugins/*.so" |