diff options
author | Phil Blundell <philb@gnu.org> | 2004-12-03 22:12:54 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-12-03 22:12:54 +0000 |
commit | 7ec6dba54c692ca8fefcfcd8251f0bee5490a991 (patch) | |
tree | 43a92cc469b56f4615d53ea6a4b66df644cdc75f | |
parent | 2a08b60aff9d9bc2f84ac0e6249f29b31f9b0bd7 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/packages
into stealth.nexus.co.uk:/home/pb/oe/oe-packages
2004/12/03 22:12:32+00:00 nexus.co.uk!pb
improve fsi-client packaging a bit
BKrev: 41b0e4e6nlo0gIuAHNtrjbpFXY0scQ
-rw-r--r-- | fsi-client/fsi-client_20040803.oe | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/fsi-client/fsi-client_20040803.oe b/fsi-client/fsi-client_20040803.oe index e69de29bb2..e830007d53 100644 --- a/fsi-client/fsi-client_20040803.oe +++ b/fsi-client/fsi-client_20040803.oe @@ -0,0 +1,21 @@ +DESCRIPTION = "ipaq h5400 fingerprint identification driver and client library for Linux" +SRC_URI = "http://heim.ifi.uio.no/~jorgenam/h5400/fsi-client-${PV}.tar.gz" +SECTION = "libs" + +CFLAGS += "-std=c99" + +S = "${WORKDIR}/client" + +FILES_${PN} += "${libdir}/libfsiclient.so" + +do_compile() { + oe_runmake all examples +} + +do_install() { + install -d ${D}${bindir} + install -d ${D}${libdir} + install libfsiclient.so ${D}${libdir} + install fsidumpraw fsidumppgm ${D}${bindir} +} + |