ira: new recipe

This commit is contained in:
PulkoMandy
2025-08-01 18:23:36 +02:00
parent 48066e7e31
commit cb0ce6340d

View File

@@ -0,0 +1,46 @@
SUMMARY="MC680x0 / 68851 reassembler"
DESCRIPTION="When I was in need for a portable M68k reassembler I remembered Tim Ruehsen's \
IRA source, and put some effort into it to make it portable to any \
architecture and to any compiler. Parts were taken from Ilkka Lehtoranta's \
MorphOS port of IRA 1.05, who already cleaned the code from all SAS/C \
dependencies. But most effort was put into making the reassembler \
endian-independant."
HOMEPAGE="https://aminet.net/package/dev/asm/ira"
COPYRIGHT="1993-2025 Tim Ruehsen, Ilkka Lehtoranta, Frank Wille, Nicolas Bastien"
LICENSE="IRA"
SOURCE_URI="https://aminet.net/dev/asm/ira.lha"
SOURCE_DIR="ira"
CHECKSUM_SHA256="ee288906c5b5dc55a2b2dc677b4fed1530c95786073fdeb5423a9014406c5223"
REVISION="1"
ARCHITECTURES="all"
SECONDARY_ARCHITECTURES="?x86"
PROVIDES="
ira$secondaryArchSuffix = $portVersion
cmd:ira = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:make
cmd:gcc$secondaryArchSuffix
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
mkdir -p $binDir
cp ira $binDir
mkdir -p $docDir
cp ira2.doc $docDir
}