From 6f80e048dae4d36f386ff6f2c890c8ed3207424d Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Wed, 1 Jan 2014 20:31:25 +0100 Subject: [PATCH 1/2] Add BlogPositive 0.4.0 recipe --- .../blogpositive/blogpositive-0.4.0.recipe | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 haiku-apps/blogpositive/blogpositive-0.4.0.recipe diff --git a/haiku-apps/blogpositive/blogpositive-0.4.0.recipe b/haiku-apps/blogpositive/blogpositive-0.4.0.recipe new file mode 100644 index 000000000..3b400b3eb --- /dev/null +++ b/haiku-apps/blogpositive/blogpositive-0.4.0.recipe @@ -0,0 +1,63 @@ +SUMMARY="The one blog app to rule them all!" +DESCRIPTION=" + Want to blog, but WebPositive isn't quick enough? + Now you can use the new blog app: BlogPositive! + It can connect to Wordpress, LiveJournal and OnSugar blogs. + " +HOMEPAGE="http://blogpositive.puckipedia.com" +SRC_URI="git://github.com/puckipedia/BlogPositive.git#tags/v0.4" +REVISION="1" + +LICENSE="MIT" +COPYRIGHT="2013 :Puck Meerburg" + +ARCHITECTURES="x86 x86_gcc2 x86_64" + +PROVIDES=" + blogpositive = $portVersion + app:blogpositive = $portVersion + " + +REQUIRES=" + lib:libcurl + lib:libz + haiku >= $haikuVersion + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:xres + cmd:mkdepend + " +BUILD_REQUIRES=" + devel:libcurl + devel:libz + haiku_devel >= $haikuVersion + " + +USER_SETTINGS_FILES=" + settings/BlogPositive directory + " + +BUILD() +{ + make + for i in BlogPositivePlugins/*; do + if [ -f $i/makefile ]; then + make -C $i + fi + done + make bindcatalogs +} + +INSTALL() +{ + make install INSTALL_DIR=$appsDir + addAppDeskbarSymlink $appsDir/BlogPositive + + for i in BlogPositivePlugins/*; do + if [ -f $i/makefile ]; then + make -C $i install INSTALL_DIR=$addOnsDir/BlogPositive + fi + done +} From 2a7a966f5e8848cc94ece7216021dc45004359d9 Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Wed, 1 Jan 2014 21:23:19 +0000 Subject: [PATCH 2/2] Remove weird line breaks (added backslash) --- haiku-apps/blogpositive/blogpositive-0.4.0.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haiku-apps/blogpositive/blogpositive-0.4.0.recipe b/haiku-apps/blogpositive/blogpositive-0.4.0.recipe index 3b400b3eb..2f20b26ef 100644 --- a/haiku-apps/blogpositive/blogpositive-0.4.0.recipe +++ b/haiku-apps/blogpositive/blogpositive-0.4.0.recipe @@ -1,7 +1,7 @@ SUMMARY="The one blog app to rule them all!" DESCRIPTION=" - Want to blog, but WebPositive isn't quick enough? - Now you can use the new blog app: BlogPositive! + Want to blog, but WebPositive isn't quick enough? \ + Now you can use the new blog app: BlogPositive! \ It can connect to Wordpress, LiveJournal and OnSugar blogs. " HOMEPAGE="http://blogpositive.puckipedia.com"