mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/mads: Added (cross assembler).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
5528773b70
commit
77502fbd76
4 changed files with 110 additions and 0 deletions
16
development/mads/README
Normal file
16
development/mads/README
Normal file
|
@ -0,0 +1,16 @@
|
|||
mads (cross assembler for 6502, targetting the Atari 8-bit)
|
||||
|
||||
MADS is oriented toward users of QA, XASM, and FA. The syntax is borrowed
|
||||
from QA, some macro commands and syntax come from XASM, and SpartaDOS X
|
||||
(SDX) syntax is inherited from FA. Additional characters are allowed in
|
||||
label names. Also added are support for the 65816 CPU, macros, procedures,
|
||||
splitting across virtual memory banks, and nested label names.
|
||||
|
||||
/usr/doc/mads-$VERSION/examples has a lot of sample code that's well
|
||||
worth looking at. The DOS/Windows package of MADS ships with various
|
||||
executables in examples/compression. These are not included in the
|
||||
package. "Squash", "deflate", and "rle" ship with source, so you can
|
||||
compile these yourself if you need them. "Exomizer", "lz4", and "pucrunch"
|
||||
exist on SlackBuilds.org, in the system/ category.
|
||||
|
||||
Syntax highlighting for the vim and scite editors is included.
|
65
development/mads/mads.SlackBuild
Normal file
65
development/mads/mads.SlackBuild
Normal file
|
@ -0,0 +1,65 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mads
|
||||
|
||||
# Written by B. Watson (yalhcru@gmail.com)
|
||||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
PRGNAM=mads
|
||||
VERSION=${VERSION:-2.0.6}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
mkdir -p $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
7za x $CWD/${PRGNAM}_${VERSION//./}.7z
|
||||
find . -type f -print0 | xargs -0 chmod 644
|
||||
find . -type d -print0 | xargs -0 chmod 755
|
||||
find . -iname \*.exe -print0 | xargs -0 rm -f
|
||||
chown -R root:root .
|
||||
|
||||
# Build & install the binary.
|
||||
fpc -Mdelphi -vh -O3 $PRGNAM.pas
|
||||
mkdir -p $PKG/usr/bin
|
||||
install -s -m0755 $PRGNAM $PKG/usr/bin
|
||||
|
||||
# Install the syntax highlighting for vim and scite. The other editors
|
||||
# aren't on SBo (some are Windows-only anyway).
|
||||
mkdir -p $PKG/usr/share/scite $PKG/usr/share/vim/vimfiles
|
||||
install -m0644 "syntax/SciTE 1.71/$PRGNAM.properties" $PKG/usr/share/scite
|
||||
cp -a syntax/vim-mads-master/ftdetect/ syntax/vim-mads-master/syntax/ \
|
||||
$PKG/usr/share/vim/vimfiles
|
||||
cp -a syntax/vim-mads-master/LICENSE \
|
||||
$PKG/usr/share/vim/vimfiles/mads.vim.LICENSE
|
||||
|
||||
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mkdir -p $PKGDOC
|
||||
cp -a examples readme $PKGDOC
|
||||
cat $CWD/README > $PKGDOC/README
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
development/mads/mads.info
Normal file
10
development/mads/mads.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="mads"
|
||||
VERSION="2.0.6"
|
||||
HOMEPAGE="http://mads.atari8.info/"
|
||||
DOWNLOAD="http://mads.atari8.info/mads_206.7z"
|
||||
MD5SUM="1709b97e5a1da11e6526b867654095a3"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="p7zip fpc"
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
19
development/mads/slack-desc
Normal file
19
development/mads/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
mads: mads (cross assembler for 6502, targetting the Atari 8-bit)
|
||||
mads:
|
||||
mads: MADS is oriented toward users of QA, XASM, and FA. The syntax is
|
||||
mads: borrowed from QA, some macro commands and syntax come from XASM, and
|
||||
mads: SpartaDOS X (SDX) syntax is inherited from FA. Additional characters
|
||||
mads: are allowed in label names. Also added are support for the 65816
|
||||
mads: CPU, macros, procedures, splitting across virtual memory banks,
|
||||
mads: and nested label names.
|
||||
mads:
|
||||
mads:
|
||||
mads:
|
Loading…
Reference in a new issue