mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
SUMMARY="A painting and image-processing program"
|
|
DESCRIPTION="ArtPaint is a program for painting and image-processing that \
|
|
won a Be's Masters Award in 1998.
|
|
|
|
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="7"
|
|
srcGitRev="c46ba255f043daaa962ee568aff2a0908b56ab89"
|
|
SOURCE_URI="https://github.com/HaikuArchives/ArtPaint/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="0040f60f7e469d0a9e170cef9fda2c45ed340819f245309a3cb5cf7678b0180e"
|
|
SOURCE_DIR="ArtPaint-$srcGitRev"
|
|
|
|
ARCHITECTURES="all ?x86"
|
|
|
|
PROVIDES="
|
|
artpaint = $portVersion
|
|
app:ArtPaint = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./build.sh $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/ArtPaint
|
|
cp -r dist/* $appsDir/ArtPaint
|
|
addAppDeskbarSymlink $appsDir/ArtPaint/ArtPaint
|
|
}
|