blob: 7732bd8bae2f4e92f69192a09490142d53e94c81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Http tunnelling daemon"
SECTION = "network"
HOMEPAGE = "http://htun.runslinux.net"
LICENSE = "GPL"
FILE_PR = "r0"
SRC_URI = "http://htun.runslinux.net/dist/htun-${PV}.tar.gz"
S = "${WORKDIR}/htun-${PV}/src"
PARALLEL_MAKE = ""
inherit autotools
do_install() {
install -d ${D}${sbindir}
install -m 0755 htund ${D}${sbindir}
}
|