diff --git a/haiku-apps/wonderbrush/wonderbrush-2.1.2.recipe b/haiku-apps/wonderbrush/wonderbrush-2.1.2.recipe index b21592101..919bcc631 100644 --- a/haiku-apps/wonderbrush/wonderbrush-2.1.2.recipe +++ b/haiku-apps/wonderbrush/wonderbrush-2.1.2.recipe @@ -1,30 +1,37 @@ -SUMMARY="Native editor for bitmap graphics" -DESCRIPTION="WonderBrush is an editor for bitmap graphics. The main window \ -holds any number of documents, which are called Canvas. A canvas has an \ -associated name and pixel resolution as well as some other properties. \ -It also references up to two files, which represent it on disk, one is a file \ -in some export format (ie. an SVG document, a flat Translator bitmap or soure \ -code), the other a full-featured project file. -Each canvas can have any number of Layers, currently arranged as a list. Each \ -layer represents an individual bitmap in the size of the canvas. Depending on \ -each layers blending mode, they are composed on top of each other to form the \ +SUMMARY="A native editor for vector/bitmap graphics" +DESCRIPTION="WonderBrush is an editor for bitmap and vector graphics. + +The main window holds any number of documents, which are called Canvas. Each \ +canvas can have any number of Layers, arranged as a list. Each layer \ +represents an individual bitmap in the size of the canvas. Depending on each \ +layer's blending mode, they are composed on top of each other to form the \ final canvas bitmap. -Each layer can contain any number of Objects, which are created by \ -WonderBrush's tools. Each object has a set of properties which define the \ -unique appearance of the object on the layer. -At any time, it is possible to reorder the layers, or the objects they \ + +Each layer can contain any number of Objects, which are created with \ +WonderBrush's tools, e.g. brush strokes, shapes, text objects or filters. Each \ +object has a set of properties which define the unique appearance of the \ +object on the layer. +At any time, it is possible to reorder the layers, or edit the objects they \ contain. This could be called non-linear editing. It is also possible to \ -change most of an objects properties later on. This could be called \ +change most of an object's properties later on. This could be called \ non-destructive editing, because adding another object (like a filter) does \ -not actually destroy any pixel data." -HOMEPAGE="http://yellowbites.com/wonderbrush.html" -COPYRIGHT="2005-2020, Stephan Aßmus und Ingo Weinhold GbR" +not actually destroy any pixel data. + +An open WonderBrush document references up to two files: one is a file in some \ +export format (e.g. an SVG document, some bitmap format like PNG or JPEG, \ +etc.). The other is a full-featured project file. + +The canvas resolution can be changed at any time, with all objects being \ +resized accordingly. This makes WonderBrush a kind of hybrid of bitmap and \ +vector editor." +HOMEPAGE="https://github.com/stippi/WonderBrush-v2" +COPYRIGHT="2005-2021, Stephan Aßmus und Ingo Weinhold GbR" LICENSE="WonderBrush" -REVISION="10" -srcGitRev="a876a28b99c13414184b8f5a27567b03edc2b32e" -SOURCE_URI="https://github.com/stippi/WonderBrush-v2/archive/$srcGitRev.tar.gz" +REVISION="11" +srcGitRev="f6df82a9021534130c1649080a26d21f9742610d" +SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz" SOURCE_DIR="WonderBrush-v2-$srcGitRev" -CHECKSUM_SHA256="16a4fd0582289bbdf8a509ca45c2f8fa9731af9b7aa44a9507daa0cba6239e59" +CHECKSUM_SHA256="6e6e9c3294c2f1036e93b18283b6d80d5b7b072bab408ede0a5e0a0a7473e236" ARCHITECTURES="x86_gcc2 x86_64" @@ -66,7 +73,19 @@ BUILD() INSTALL() { - mkdir -p $appsDir + docFolder=$documentationDir/packages/wonderbrush + mkdir -p $appsDir \ + $docFolder/Deutsch $docFolder/English $docFolder/Polski + cp WonderBrush/WonderBrush $appsDir addAppDeskbarSymlink $appsDir/WonderBrush + + cd WonderBrush/doc + cp -r -t $docFolder/Deutsch Deutsch/html Deutsch/tutorials + ln -s $docFolder/Deutsch/html/introduction.html $docFolder/Deutsch/Docs.html + + cp -r -t $docFolder/English English/html English/tutorials + ln -s $docFolder/English/html/introduction.html $docFolder/English/Docs.html + + cp -r -t $docFolder Polski }