0
0
Fork 0
haikuports/dev-embedded/d52/d52-3.4.1.recipe

52 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2015-08-09 09:03:19 +00:00
SUMMARY="8052, 8035, 8048, 8041, Z80, 8080, 8085 Microcontroller Disassemblers"
DESCRIPTION="The D52 disassembler allows the user to specify memory areas as \
code, binary data (8 or 16 bit), ascii text, address tables, or data that \
should be ignored (not disassembled). You may specify such areas in an ascii \
text file.
With the use of a control file, you can, by an iterative process, get a \
progressively more meaningful disassembly by modifying the control file based \
on examination of the output of previous runs of the disassembler. You can \
also specify names for labels and symbols in the control file, resulting in a \
2016-02-26 15:33:51 +00:00
much more readable source file."
2015-08-09 09:03:19 +00:00
HOMEPAGE="http://www.brouhaha.com/~eric/software/d52"
2016-02-17 19:26:37 +00:00
COPYRIGHT="2007 Jeffery L. Post"
LICENSE="GNU GPL v3"
REVISION="1"
2015-08-09 09:03:19 +00:00
SOURCE_URI="http://www.brouhaha.com/~eric/software/d52/d52v341.zip"
CHECKSUM_SHA256="784900108a4352fb439f9c9efa9458c93138ed1f05f2e41aa2faca5bc7c76e46"
SOURCE_DIR="d52v341"
2016-02-17 19:26:37 +00:00
ARCHITECTURES="x86_gcc2"
2015-08-09 09:03:19 +00:00
PROVIDES="
d52 = $portVersion
cmd:d48
cmd:d52
cmd:dz80
2016-02-26 15:33:51 +00:00
"
2015-08-09 09:03:19 +00:00
REQUIRES="
haiku
2016-02-26 15:33:51 +00:00
"
2015-08-09 09:03:19 +00:00
BUILD_REQUIRES="
haiku_devel
2016-02-29 01:17:42 +00:00
"
2015-08-09 09:03:19 +00:00
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
2016-02-29 01:17:42 +00:00
"
2015-08-09 09:03:19 +00:00
BUILD()
{
make # Not multi-job safe.
}
INSTALL()
{
mkdir -p $binDir
cp dz80 d48 d52 $binDir
mkdir -p $docDir
cp *.html $docDir
}