diff --git a/haiku-apps/whereismymouse/whereismymouse-1.0.recipe b/haiku-apps/whereismymouse/whereismymouse-1.0.recipe new file mode 100644 index 000000000..3e78c8997 --- /dev/null +++ b/haiku-apps/whereismymouse/whereismymouse-1.0.recipe @@ -0,0 +1,58 @@ +SUMMARY="Find your mouse pointer with animated concentric circles" +DESCRIPTION="'Where Is My Mouse' is a little application that draws \ +concentric circles around the mouse pointer. This can help finding it \ +on the screen, especially when doing a presentations with a projector or \ +on a laptop. + +Use Haiku's Shortcuts preferences to set a key combination for the tool. + +Just run it to see the effect. +To change settings like number of circles, their width and the speed of the \ +animation, run it from the Terminal with the "-s" parameter: + +WhereIsMyMouse -s + +This will open a settings panel to adjust those visuals. You can change the \ +color of the circles by drag'n'dropping a color from an app like Colors!, \ +Icon-O-Matic or WonderBrush onto the animation preview. +Settings are saved in ~/config/settings/WhereIsMyMouse_settings." +HOMEPAGE="https://github.com/HaikuArchives/WheresMyMouse" +COPYRIGHT="2002 Marcin 'Shard' Konicki" +LICENSE="MIT" +REVISION="1" +gitHash="b2a90328bb80ac564a83f23bc53871e4d1c0da3d" +SOURCE_URI="https://github.com/HaikuArchives/WheresMyMouse/archive/$gitHash.tar.gz" +CHECKSUM_SHA256="8b6a98f3a6e31d7ec948d18463fd0a62736b2d18b5928ecf22e3d3b7c8bf0696" +SOURCE_DIR="WheresMyMouse-$gitHash" + +ARCHITECTURES="x86_gcc2 x86 ?x86_64" + +PROVIDES=" + whereismymouse = $portVersion + cmd:WhereIsMyMouse = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:make + cmd:gcc + " + +BUILD() +{ + cd source + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $binDir + cd source/objects + cp -a WhereIsMyMouse $binDir +}