slackbuilds_ponce/development/cc65/cc65.SlackBuild

79 lines
2.1 KiB
Bash

#!/bin/sh
# Slackware build script for cc65
# Written by B. Watson (yalhcru@gmail.com)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20170129 bkw:
# - Update for v2.15_20170126, aka git 6878ede. Upstream hasn't done
# a release since 2013 or so, but there's been lots of development.
# Script modified enough that it can no longer build v2.13.3; use
# the one from SBo's 14.1 repo if you need the old version for some
# reason. Source is created from a git checkout, see git2targz.sh.
PRGNAM=cc65
VERSION=${VERSION:-2.15_20170126}
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}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
else
SLKCFLAGS="-O2"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT $PKG/usr/doc/$PRGNAM-$VERSION
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
cd $PRGNAM-$VERSION
chown -R root:root .
find . -type f -print0 | xargs -0 chmod 644
find . -type d -print0 | xargs -0 chmod 755
# external CFLAGS not honored
sed -i "/^CFLAGS/s,-O,$SLKCFLAGS," src/Makefile
# If we wanted GNU info docs, we could 'make doc' instead of 'make -C doc
# html'. But, they're the same as the HTML pages, and they install into
# /usr/info with names like 'intro' and 'index', which would be confusing.
# It would be possible to patch things so we had 'cc65-intro', etc,
# but IMO not worth the effort.
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
make all prefix=/usr LDFLAGS=-Wl,-s
make -C doc html
make install prefix=$PKG/usr htmldir=$PKGDOC samplesdir=$PKGDOC/samples
# binaries already stripped, no man pages
mkdir -p $PKGDOC
cp -a README* LICENSE $PKGDOC
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}