blob: 7791e23546b94c46feb5fbf6a9676a8929f20270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Simple SCEP Client for Unix"
SECTION = "console/utils"
LICENSE = "BSD"
SRC_URI = " \
http://www.klake.org/~jt/sscep/sscep.tgz \
file://memleak.patch;patch=1 \
file://httphost.patch;patch=1 \
file://ca_segfault.patch;patch=1 \
"
S = "${WORKDIR}/${PN}"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${bindir}
install -m 0755 sscep ${D}${bindir}/sscep
}
|