diff --git a/haiku-apps/desknotes/desknotes-1.1.recipe b/haiku-apps/desknotes/desknotes-1.1.recipe deleted file mode 100644 index 9deae0ce4..000000000 --- a/haiku-apps/desknotes/desknotes-1.1.recipe +++ /dev/null @@ -1,46 +0,0 @@ -SUMMARY="A tool to put simple sticky notes on the Desktop" -DESCRIPTION="With DeskNotes you can leave little sticky notes all over your \ -desktop, reminding you of things to do. The main difference between DeskNotes \ -and other note utilities for Haiku is, that DeskNotes is designed to be used \ -as a replicant. This means that when you tear a note from the DeskNotes \ -application onto your desktop, it stays there! You don't have to save it \ -before rebooting, or fiddle with your UserBootscript." -HOMEPAGE="https://github.com/HaikuArchives/DeskNotes" -COPYRIGHT="2000 Colin Stewart" -LICENSE="BSD (3-clause)" -REVISION="5" -srcGitRev="e39a1cf592c5a51f49578dd5efe0bbb1c6d0f450" -SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz" -CHECKSUM_SHA256="f72a78d1c39a7193c8dd404b066190f5fd9452b7c650f2eb31cf2a4c6bfdede5" -SOURCE_DIR="DeskNotes-$srcGitRev" - -ARCHITECTURES="x86_gcc2 ?x86 x86_64" - -PROVIDES=" - desknotes = $portVersion - app:DeskNotes = $portVersion - " -REQUIRES=" - haiku - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - makefile_engine - cmd:gcc - cmd:make - " - -BUILD() -{ - make $jobArgs OBJ_DIR=objects -} - -INSTALL() -{ - mkdir -p $appsDir - cp -a objects/DeskNotes $appsDir - addAppDeskbarSymlink $appsDir/DeskNotes -} diff --git a/haiku-apps/desknotes/desknotes-1.2.recipe b/haiku-apps/desknotes/desknotes-1.2.recipe new file mode 100644 index 000000000..ffa45ffca --- /dev/null +++ b/haiku-apps/desknotes/desknotes-1.2.recipe @@ -0,0 +1,51 @@ +SUMMARY="A tool to put simple sticky notes on the Desktop" +DESCRIPTION="With DeskNotes you can leave little sticky notes all over your \ +Desktop, reminding you of things to do. +The main difference between DeskNotes and other note utilities is that \ +DeskNotes is designed to be used as replicants. This means that when you tear \ +a note from the DeskNotes application onto your Desktop, it stays there! You \ +don't have to save it before rebooting, or fiddle with your UserBootscript. + +You can choose different colors from a right-click context menu or drop \ +arbitrary colors from applications like 'Icon-O-Matic' or 'Colors!'. +And, even as replicants, notes can be resized with the bottom-right resize \ +widget." +HOMEPAGE="https://github.com/HaikuArchives/DeskNotes" +COPYRIGHT="2000 Colin Stewart + 2012-2021 Haiku Archives team" +LICENSE="BSD (3-clause)" +REVISION="1" +SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="" + +ARCHITECTURES="x86_gcc2 x86_64" + +PROVIDES=" + desknotes = $portVersion + app:DeskNotes = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:make + " + +BUILD() +{ + make $jobArgs OBJ_DIR=objects + make bindcatalogs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir + cp -a objects/DeskNotes $appsDir + addAppDeskbarSymlink $appsDir/DeskNotes +}