aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fsi-client/fsi-client_20040803.bb
blob: e4acf05871507b78ffdc0cde5fb5db12b45ff66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
LICENSE = "GPL"

CFLAGS += "-std=c99"

S = "${WORKDIR}/client"

FILES_${PN} += "${libdir}/libfsiclient.so"

do_compile() {
	oe_runmake all examples CC="${CC} ${LDFLAGS}"
}

do_install() {
	install -d ${D}${bindir}
	install -d ${D}${libdir}
	install libfsiclient.so ${D}${libdir}
	install fsidumpraw fsidumppgm ${D}${bindir}
}