Files
haikuports/haiku-apps/artpaint/artpaint-2.5.recipe
2023-02-27 21:17:15 -05:00

50 lines
1.2 KiB
Bash

SUMMARY="A native painting and image editing program"
DESCRIPTION="ArtPaint is a program for painting and image processing that \
won a Be's Masters Award in 1998. Since then (and after a rather long hiatus), \
ArtPaint development is very active again on Haiku.
ArtPaint features a comprehensive set of painting tools, dozens of add-ons and \
supports layers and custom brush settings."
HOMEPAGE="https://github.com/HaikuArchives/ArtPaint"
COPYRIGHT="2003 Heikki Suhonen
2009 Karsten Heimrich
2013-2023 HaikuArchives team"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="764e071278cc73e2daefb1227172df97a37033396c553092fb098bf4a22b16b4"
SOURCE_DIR="ArtPaint-$portVersion"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
artpaint$secondaryArchSuffix = $portVersion
app:ArtPaint = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:find
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++$secondaryArchSuffix
cmd:make
"
BUILD()
{
./build.sh all
}
INSTALL()
{
mkdir -p $appsDir/ArtPaint
cp -r dist/* $appsDir/ArtPaint
addAppDeskbarSymlink $appsDir/ArtPaint/ArtPaint
}