Files
haikuports/app-misc/ansiweather/ansiweather-1.09.recipe
2016-11-10 19:42:15 +00:00

43 lines
860 B
Bash

SUMMARY="A script for displaying the current weather"
DESCRIPTION="AnsiWeather is a Shell script for displaying the current weather \
conditions in your terminal, with support for ANSI colors and Unicode symbols."
HOMEPAGE="http://github.com/fcambus/ansiweather/"
COPYRIGHT="2013-2016, Frederic Cambus"
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="75f705263c8ca1eea74039c478b6c760632f26e3b503ac9d04cd1ab188d1ca77"
SOURCE_FILENAME="ansiweather-$portVersion.tar.gz"
ARCHITECTURES="any"
PROVIDES="
ansiweather = $portVersion
cmd:ansiweather = $portVersion
"
REQUIRES="
haiku
cmd:bc
cmd:curl
cmd:jq
cmd:sh
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
"
BUILD()
{
true
}
INSTALL()
{
mkdir -p $binDir $manDir/man1
cp -a ansiweather $binDir
cp -a ansiweather.1 $manDir/man1/
}