mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
94 lines
2.9 KiB
Bash
94 lines
2.9 KiB
Bash
SUMMARY="Drawing program designed for young children"
|
|
DESCRIPTION="Tux Paint is a free, award-winning drawing program for children \
|
|
ages 3 to 12 (for example, preschool and K-6). Tux Paint is used \
|
|
in schools and around the world as a computer literacy drawing activity. \
|
|
It combines an easy-to-use interface, fun sound effects, and an \
|
|
encouraging cartoon mascot who guides children as they use the program."
|
|
HOMEPAGE="http://www.tuxpaint.org/"
|
|
COPYRIGHT="2002-2023 Bill Kendrick and others"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://sourceforge.net/projects/tuxpaint/files/tuxpaint/${portVersion/\~rc1/-beta}/tuxpaint-${portVersion/\~/-}.tar.gz"
|
|
CHECKSUM_SHA256="013a69248a0bc01be4c7a91be70aa55fe3b2f27999d33444ea2cab9765af0191"
|
|
SOURCE_DIR="tuxpaint-${portVersion/\~/-}"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/TuxPaint directory
|
|
"
|
|
|
|
PROVIDES="
|
|
tuxpaint$secondaryArchSuffix = $portVersion
|
|
app:TuxPaint
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libcairo$secondaryArchSuffix
|
|
lib:libfribidi$secondaryArchSuffix
|
|
lib:libgdk_pixbuf_2.0$secondaryArchSuffix
|
|
lib:libgio_2.0$secondaryArchSuffix
|
|
lib:libglib_2.0$secondaryArchSuffix
|
|
lib:libgobject_2.0$secondaryArchSuffix
|
|
lib:libharfbuzz$secondaryArchSuffix
|
|
lib:libiconv$secondaryArchSuffix
|
|
lib:libimagequant$secondaryArchSuffix
|
|
lib:libintl$secondaryArchSuffix
|
|
lib:libpangoft2_1.0$secondaryArchSuffix
|
|
lib:libpaper$secondaryArchSuffix
|
|
lib:libpng16$secondaryArchSuffix
|
|
lib:librsvg_2$secondaryArchSuffix
|
|
lib:libSDL2_2.0$secondaryArchSuffix
|
|
lib:libSDL2_image_2.0$secondaryArchSuffix
|
|
lib:libSDL2_gfx$secondaryArchSuffix
|
|
lib:libSDL2_mixer_2.0$secondaryArchSuffix
|
|
lib:libSDL2_pango$secondaryArchSuffix
|
|
lib:libSDL2_ttf_2.0$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libcairo$secondaryArchSuffix
|
|
devel:libfribidi$secondaryArchSuffix
|
|
devel:libgdk_pixbuf_2.0$secondaryArchSuffix
|
|
devel:libiconv$secondaryArchSuffix
|
|
devel:libimagequant$secondaryArchSuffix
|
|
devel:libintl$secondaryArchSuffix
|
|
devel:libpaper$secondaryArchSuffix
|
|
devel:libpangoft2_1.0$secondaryArchSuffix
|
|
devel:libpng16$secondaryArchSuffix
|
|
devel:librsvg_2$secondaryArchSuffix
|
|
devel:libSDL2_2.0$secondaryArchSuffix
|
|
devel:libSDL2_image_2.0$secondaryArchSuffix
|
|
devel:libSDL2_gfx$secondaryArchSuffix
|
|
devel:libSDL2_mixer_2.0$secondaryArchSuffix
|
|
devel:libSDL2_pango$secondaryArchSuffix
|
|
devel:libSDL2_ttf_2.0$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:convert
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:gperf
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make PREFIX=$appsDir/TuxPaint
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/TuxPaint
|
|
|
|
make install PREFIX=$appsDir/TuxPaint
|
|
ln -s $appsDir/TuxPaint/bin/tuxpaint $appsDir/TuxPaint/TuxPaint
|
|
|
|
addAppDeskbarSymlink $appsDir/TuxPaint/bin/tuxpaint TuxPaint
|
|
}
|