From 9cf70fec8f10910c6d4040b1bad3665d1487ec73 Mon Sep 17 00:00:00 2001 From: Sergei Reznikov Date: Mon, 2 Mar 2015 17:58:58 +0300 Subject: [PATCH] Weather: update to the latest revision --- app-misc/weather/weather-0.0.1_git.recipe | 33 ------------------- haiku-apps/weather/weather-0.1.1_git.recipe | 36 +++++++++++++++++++++ 2 files changed, 36 insertions(+), 33 deletions(-) delete mode 100644 app-misc/weather/weather-0.0.1_git.recipe create mode 100644 haiku-apps/weather/weather-0.1.1_git.recipe diff --git a/app-misc/weather/weather-0.0.1_git.recipe b/app-misc/weather/weather-0.0.1_git.recipe deleted file mode 100644 index bcabdce96..000000000 --- a/app-misc/weather/weather-0.0.1_git.recipe +++ /dev/null @@ -1,33 +0,0 @@ -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 -} diff --git a/haiku-apps/weather/weather-0.1.1_git.recipe b/haiku-apps/weather/weather-0.1.1_git.recipe new file mode 100644 index 000000000..93ff1ef88 --- /dev/null +++ b/haiku-apps/weather/weather-0.1.1_git.recipe @@ -0,0 +1,36 @@ +SUMMARY="A simple weather application" +DESCRIPTION="A small weather application built for GCI." +HOMEPAGE="https://github.com/HaikuArchives/Weather" +SRC_URI="git+https://github.com/HaikuArchives/Weather.git#74a895e" +ARCHITECTURES="x86 x86_gcc2 x86_64" +REVISION="1" +LICENSE="MIT" +COPYRIGHT=" + 2014 George White + 2015 Przemysław Buczkowski + 2015 Janus + " + +BUILD_PREREQUIRES=" + cmd:make + cmd:gcc + makefile_engine + haiku_devel + " + +PROVIDES=" + weather + app:Weather = $portVersion + " + +BUILD() +{ + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir + cp objects/Weather $appsDir + addAppDeskbarSymlink $appsDir/Weather +}