mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
56 lines
1.1 KiB
Bash
56 lines
1.1 KiB
Bash
SUMMARY="FlashPIX open source toolkit"
|
|
DESCRIPTION="The FlashPIX open source toolkit has library routines which handles FlashPIX images \
|
|
and is based on source code obtained from the Digital Imaging Group Inc. (currently known as International \
|
|
Imaging Industry Association or i3a)."
|
|
HOMEPAGE="http://www.i3a.org"
|
|
COPYRIGHT="1999 Digital Imaging Group, Inc."
|
|
LICENSE="Flashpix"
|
|
REVISION="1"
|
|
SOURCE_URI="http://www.imagemagick.org/download/delegates/libfpx-1.3.1-6.tar.xz"
|
|
CHECKSUM_SHA256="8ea8df5454f1a96c8a49446b7a0d3f7374ce87c501f90e64f4d6ea2d735b0c94"
|
|
SOURCE_DIR="libfpx-1.3.1-6"
|
|
|
|
ARCHITECTURES="?x86 ?x86_64 x86_gcc2 ?arm"
|
|
|
|
PROVIDES="
|
|
libfpx = $portVersion
|
|
lib:libfpx = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libfpx$_devel=$portVersion
|
|
devel:libfpx=$portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
libfpx == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
cmd:awk
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure --disable-dependency-tracking CPPFLAGS=-D__linux__
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
prepareInstalledDevelLib libfpx
|
|
fixPkgconfig
|
|
packageEntries devel $developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|