Add a ton of missing package DESCRIPTION fields.
[vuplus_openembedded] / transconnect / transconnect_1.2.oe
1 DEPENDS = "virtual/libc"
2 RDEPENDS = "libc6"
3 DESCRIPTION = "TransConnect is an implementation of function \
4 interposing to allow users on *nix platforms to transparenly \
5 tunnel all networking applications over an HTTPS proxy."
6
7 SRC_URI = ${SOURCEFORGE_MIRROR}/transconnect/transconnect-${PV}.tar.gz
8
9 LDFLAGS_append = " -shared"
10 do_compile () {
11         oe_runmake tconn.so
12 }
13
14 do_install () {
15         install -d ${D}/${sysconfdir}
16         install -m 0644 tconn.conf ${D}/${sysconfdir}/
17         install -d ${D}/${libdir}/tconn
18         install -m 0755 tconn.so ${D}/${libdir}/tconn/
19 }