blob: 2f507ebbf4e65410276dcde2ca07380c6bc224fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DEPENDS = "virtual/libc"
RDEPENDS = "libc6"
SRC_URI = ${SOURCEFORGE_MIRROR}/transconnect/transconnect-${PV}.tar.gz
LDFLAGS_append = " -shared"
do_compile () {
oe_runmake tconn.so
}
do_install () {
install -d ${D}/${sysconfdir}
install -m 0644 tconn.conf ${D}/${sysconfdir}/
install -d ${D}/${libdir}/tconn
install -m 0755 tconn.so ${D}/${libdir}/tconn/
}
|