diff options
author | B. Watson <yalhcru@gmail.com> | 2017-09-07 08:27:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-09-09 06:56:14 +0700 |
commit | 77502fbd76ce725f45d919c8f08ab15aacba7280 (patch) | |
tree | 46165fb7626ed237e6314fd04faa3e21fb915cbf /development/mads/mads.SlackBuild | |
parent | 5528773b70839c4612672eda520656075fb35624 (diff) | |
download | slackbuilds-77502fbd76ce725f45d919c8f08ab15aacba7280.tar.gz |
development/mads: Added (cross assembler).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/mads/mads.SlackBuild')
-rw-r--r-- | development/mads/mads.SlackBuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/development/mads/mads.SlackBuild b/development/mads/mads.SlackBuild new file mode 100644 index 0000000000..2834fca113 --- /dev/null +++ b/development/mads/mads.SlackBuild @@ -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} |