Files
haikuports/haiku-apps/artpaint/artpaint-2.1.0git.recipe
2015-12-26 14:31:09 +00:00

49 lines
1.2 KiB
Bash

SUMMARY="An award winning painting and image-processing program"
DESCRIPTION="The main features of ArtPaint include a comprehensive set of \
painting-tools and real-time preview for many image-manipulating operations. \
The key design principle has been to let the user see what they are doing \
instead of just forcing them to type in some numbers and then hoping that \
the result will not be too far from the expected."
HOMEPAGE="https://github.com/HaikuArchives/ArtPaint"
COPYRIGHT="2003 Heikki Suhonen
2009 Karsten Heimrich"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/HaikuArchives/ArtPaint/archive/3e4be5a29e2966b390d668b7e96ef3f7901fa001.tar.gz"
CHECKSUM_SHA256="2990682bb932f4fbd8f156511171ae09d61038eddfa88fc7646af715f6fc83d8"
SOURCE_DIR="ArtPaint-3e4be5a29e2966b390d668b7e96ef3f7901fa001"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
artpaint = $portVersion
app:ArtPaint = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:ld
cmd:make
"
BUILD()
{
cd artpaint
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
cd artpaint
mkdir -p $appsDir
cp objects/ArtPaint $appsDir
addAppDeskbarSymlink $appsDir/ArtPaint
}