diff options
author | Grissiom <chaos.proton@gmail.com> | 2010-12-12 13:40:07 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-12 13:40:07 -0600 |
commit | 16ba36450577cf0310bb134ff87918041fe5d02b (patch) | |
tree | 08b22fbbf997daad3277632dcadd29a0570c58f0 /development | |
parent | 317fdb3ae83d5617764d4303bb95095a659e5988 (diff) | |
download | slackbuilds-16ba36450577cf0310bb134ff87918041fe5d02b.tar.gz |
development/sdcc: Added (Small Device C Compiler)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/sdcc/README | 10 | ||||
-rw-r--r-- | development/sdcc/sdcc.SlackBuild | 88 | ||||
-rw-r--r-- | development/sdcc/sdcc.info | 10 | ||||
-rw-r--r-- | development/sdcc/slack-desc | 19 |
4 files changed, 127 insertions, 0 deletions
diff --git a/development/sdcc/README b/development/sdcc/README new file mode 100644 index 0000000000..6a934229d1 --- /dev/null +++ b/development/sdcc/README @@ -0,0 +1,10 @@ +SDCC is a retargettable, optimizing ANSI - C compiler that targets the Intel +8051, Maxim 80DS390, Zilog Z80 and the Motorola 68HC08 based MCUs. Work is in +progress on supporting the Microchip PIC16 and PIC18 series. SDCC is Free Open +Source Software, distributed under GNU General Public License (GPL). + +By default, this will build sdcc without pic support. If you want that, install +gputils and run the script as follows: ENABLE_PIC=y sh ./sdcc.SlackBuild + +You can download the doc tarball from: +http://downloads.sourceforge.net/project/sdcc/sdcc-doc/3.0.0/sdcc-doc-3.0.0.tar.bz2 diff --git a/development/sdcc/sdcc.SlackBuild b/development/sdcc/sdcc.SlackBuild new file mode 100644 index 0000000000..43bd89581d --- /dev/null +++ b/development/sdcc/sdcc.SlackBuild @@ -0,0 +1,88 @@ +#!/bin/sh + +# Slackware build script for sdcc + +# Written by Grissiom <chaos.proton@gmail.com> + +PRGNAM=sdcc +VERSION=${VERSION:-3.0.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +ENABLE_PIC=${ENABLE_PIC:-no} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/$PRGNAM-src-$VERSION.tar.bz2 +cd $PRGNAM +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +if [ "$ENABLE_PIC" = 'no' ]; then + enable_pic='--disable-pic-port --disable-pic16-port' +else + enable_pic='--enable-pic-port --enable-pic16-port' +fi + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux \ + $enable_pic + +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$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} diff --git a/development/sdcc/sdcc.info b/development/sdcc/sdcc.info new file mode 100644 index 0000000000..16093f96ce --- /dev/null +++ b/development/sdcc/sdcc.info @@ -0,0 +1,10 @@ +PRGNAM="sdcc" +VERSION="3.0.0" +HOMEPAGE="http://sdcc.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/project/sdcc/sdcc/3.0.0/sdcc-src-3.0.0.tar.bz2" +MD5SUM="20fbd49a3421e09fe65577c45524c89e" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Grissiom" +EMAIL="chaos.proton@gmail.com" +APPROVED="rworkman" diff --git a/development/sdcc/slack-desc b/development/sdcc/slack-desc new file mode 100644 index 0000000000..c3b877f106 --- /dev/null +++ b/development/sdcc/slack-desc @@ -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 ':'. + + |-----handy-ruler------------------------------------------------------| +sdcc: SDCC (Small Device C Compiler) +sdcc: +sdcc: SDCC is a retargettable, optimizing ANSI - C compiler that targets the +sdcc: Intel 8051, Maxim 80DS390, Zilog Z80 and the Motorola 68HC08 based +sdcc: MCUs. SDCC is Free Open Source Software, distributed under GPL. +sdcc: +sdcc: Homepage:http://sdcc.sourceforge.net/ +sdcc: +sdcc: +sdcc: +sdcc: |