Files
haikuports/app-misc/ansiweather/ansiweather-1.18.0.recipe
2022-02-26 13:28:19 +01:00

43 lines
861 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="https://github.com/fcambus/ansiweather/"
COPYRIGHT="2013-2016, Frederic Cambus"
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="362393918b64083de466414ca3ada3e0236206b29bfb2624d4ad1284774e6a7a"
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/
}