# Template file for 'weather'
pkgname=weather
version=2.5.0
revision=2
depends="python3"
conf_files="/etc/weatherrc"
short_desc="CLI utility for current (METAR) weather conditions and forecasts"
maintainer="Richard Taityr <dicktyr@yahoo.co.uk>"
license="ISC"
homepage="http://fungi.yuggoth.org/weather/"
distfiles="http://fungi.yuggoth.org/${pkgname}/src/${pkgname}-${version}.tar.xz"
checksum=c27ddca607eb96a9ed308895161e37d7b0eb6c6810e18467173dca1d769c4f0e

do_install() {
	vbin weather
	vinstall weather.py 644 "${py3_sitelib}"

	# correlation sets
	vmkdir usr/share/weather
	vinstall airports 644 usr/share/weather
	vinstall places 644 usr/share/weather
	vinstall stations 644 usr/share/weather
	vinstall zctas 644 usr/share/weather
	vinstall zones 644 usr/share/weather

	# set path for correlation sets
	cp weatherrc weatherrc.new
	echo 'setpath = .:~/.weather:/usr/share/weather' >> weatherrc.new
	vinstall weatherrc.new 644 etc weatherrc

	vman weather.1
	vman weatherrc.5

	for f in FAQ README NEWS; do
		vdoc "$f"
	done

	vlicense LICENSE
}
