blob: f5c8d8aa5d44e96b190b56eac83db04113597bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
DESCRIPTION = "Web interface"
LICENSE = "GPL"
PV = "0.0.3+svnr${SRCPV}"
SRCREV = "4737"
SRC_URI = "svn://x-wrt.googlecode.com/svn;module=trunk;proto=http"
S = "${WORKDIR}/trunk"
do_compile() {
cd ${S}/package/webif/
${CC} ${CFLAGS} \
-D_METAPACK \
-I${STAGING_INCDIR} -include endian.h \
${LDFLAGS} \
-o ${S}/webifmetabin \
src/int2human/main.c src/int2human/human_readable.c \
src/wepkeygen/keygen.c src/wepkeygen/md5.c \
src/webif-page.c src/bstrip.c src/webifmetabin.c
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/webifmetabin ${D}${bindir}/
install -d ${D}${sysconfdir}
cp -dPr ${S}/package/webif/files/etc/* ${D}${sysconfdir}/
install -d ${D}${libdir}
cp -dPr ${S}/package/webif/files/usr/lib/* ${D}${libdir}/
find ${D} -name ".svn" | xargs rm -r || true
}
RDEPENDS_${PN} = "haserl ${IPKG_VARIANT} cron"
|