Merged in waddlesplash/haikuports/artpaint (pull request #251)

ArtPaint: working recipe.
This commit is contained in:
Scott McCreary
2014-12-02 16:13:51 -08:00

View File

@@ -0,0 +1,47 @@
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"
SRC_URI="https://github.com/HaikuArchives/ArtPaint/archive/3e4be5a29e2966b390d668b7e96ef3f7901fa001.tar.gz"
CHECKSUM_SHA256="2990682bb932f4fbd8f156511171ae09d61038eddfa88fc7646af715f6fc83d8"
SOURCE_DIR="ArtPaint-3e4be5a29e2966b390d668b7e96ef3f7901fa001"
COPYRIGHT="2003 Heikki Suhonen
2009 Karsten Heimrich"
LICENSE="MIT"
REVISION="1"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
PROVIDES="
artpaint = $portVersion
app:ArtPaint = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
makefile_engine
cmd:mkdepend
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
}