blob: c9bdc805b9eac7fb6aae4111866e497376b8548d (
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
38
39
|
SECTION = "apps"
LICENSE = "GPL"
DESCRIPTION = "wview is a weather site generator and more for a variety of weather stations"
HOMEPAGE = "http://www.wviewweather.com/"
DEPENDS += " bash util-linux gd openssl curl update-rc.d"
SRC_URI = "${SOURCEFORGE_MIRROR}/wview/wview-${PV}.tar.gz \
file://Makefile.am.patch;patch=1"
S = "${WORKDIR}/wview-${PV}"
inherit autotools
EXTRA_OECONF += "--prefix=${D} --enable-wunderground"
do_install_append() {
install -d ${D}/${sysconfdir}/init.d
install -d ${D}/${sysconfdir}/wview
install -d ${D}/${sysconfdir}/wview/html
install -d ${D}/${sysconfdir}/wview/alarms
install -m 755 ${S}/examples/NSLU2/wview ${D}/${sysconfdir}/init.d
install -m 644 ${S}/examples/conf/*.* ${D}/${sysconfdir}/wview
install -m 755 ${S}/examples/alarms/*.sh ${D}/${sysconfdir}/wview/alarms
install -m 644 ${S}/examples/html/*.* ${D}/${sysconfdir}/wview/html
install -d ${D}/var/wview
install -d ${D}/var/wview/archive
install -d ${D}/var/wview/alarms
install -d ${D}/var/wview/img
install -d ${D}/var/wview/noaa
install -m 644 ${S}/bin/img/*.* ${D}/var/wview/img
if test "x${D}" != "x"; then
D="-r ${D}"
else
D=""
fi
update-rc.d $D wview defaults 95 15
}
|