mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
34 lines
702 B
Plaintext
34 lines
702 B
Plaintext
SUMMARY="A simple weather application."
|
|
DESCRIPTION="A small weather application built for GCI, currently only a GUI demonstration. Network capability should arrive by 0.1.1"
|
|
HOMEPAGE="https://github.com/georgewhite5/HaikuWeather"
|
|
SRC_URI="git+https://github.com/georgewhite5/HaikuWeather.git#7731be69bbcd1a150a72a631ef84784c842c75ec"
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
REVISION="1"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2014 George White"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
makefile_engine
|
|
haiku_devel
|
|
"
|
|
|
|
PROVIDES="
|
|
weather
|
|
app:Weather = $portVersion
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make OBJDIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cd objects*
|
|
cp Weather $appsDir/Weather
|
|
addAppDeskbarSymlink $appsDir/Weather
|
|
}
|