diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:23 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:23 +0200 |
commit | ed6d130a4e898198452447825cbb813949a72993 (patch) | |
tree | 745716a5d509bb68a7f0345aa9486adceef77253 /development/sdcc | |
parent | 8645e9824a26aa15c2e64245f57091872ea9b229 (diff) | |
download | slackbuilds-ed6d130a4e898198452447825cbb813949a72993.tar.gz |
development/sdcc: Removed from 13.0 repository
Diffstat (limited to 'development/sdcc')
-rw-r--r-- | development/sdcc/README | 6 | ||||
-rw-r--r-- | development/sdcc/sdcc.SlackBuild | 64 | ||||
-rw-r--r-- | development/sdcc/sdcc.info | 8 | ||||
-rw-r--r-- | development/sdcc/slack-desc | 19 |
4 files changed, 0 insertions, 97 deletions
diff --git a/development/sdcc/README b/development/sdcc/README deleted file mode 100644 index 05fe4ba96a..0000000000 --- a/development/sdcc/README +++ /dev/null @@ -1,6 +0,0 @@ -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. - -This requires gc (well, it's actually optional, but the build script enables -it by default - if that's not what you want, then remove "--enable-libgc") diff --git a/development/sdcc/sdcc.SlackBuild b/development/sdcc/sdcc.SlackBuild deleted file mode 100644 index 8e63c726cb..0000000000 --- a/development/sdcc/sdcc.SlackBuild +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -# Slackware build script for sdcc -# Written by Kyle Guinn <elyk03@gmail.com> - -PRGNAM="sdcc" -VERSION=${VERSION:-"2.8.0"} -ARCH=${ARCH:-"i486"} -BUILD=${BUILD:-"1"} -TAG=${TAG:-"_SBo"} - -CWD=$(pwd) -TMP=${TMP:-"/tmp/SBo"} -PKG="$TMP/package-$PRGNAM-$VERSION" -OUTPUT=${OUTPUT:-"/tmp"} - -DOCS="COPYING ChangeLog" - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -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 . -chmod -R u+w,go+r-w,a-st . - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --infodir=/usr/info \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux \ - --enable-libgc - #--enable-doc # (requires lyx, untested) - -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 $DOCS $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.tgz diff --git a/development/sdcc/sdcc.info b/development/sdcc/sdcc.info deleted file mode 100644 index 15f64df1c9..0000000000 --- a/development/sdcc/sdcc.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="sdcc" -VERSION="2.8.0" -HOMEPAGE="http://sdcc.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/sdcc/sdcc-src-2.8.0.tar.bz2" -MD5SUM="1b9c2e581b92d5e3f13bca37c5784080" -MAINTAINER="Kyle Guinn" -EMAIL="elyk03@gmail.com" -APPROVED="rworkman" diff --git a/development/sdcc/slack-desc b/development/sdcc/slack-desc deleted file mode 100644 index abd29b4254..0000000000 --- a/development/sdcc/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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 -sdcc: the Intel 8051, Maxim 80DS390, Zilog Z80 and the Motorola 68HC08 -sdcc: based MCUs. Work is in progress on supporting the Microchip -sdcc: PIC16 and PIC18 series. -sdcc: -sdcc: -sdcc: -sdcc: -sdcc: |