diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:29 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:29 +0200 |
commit | 2eaad3a6f60910a4a10a43ba6c14aa94796e18fd (patch) | |
tree | 71c577df91e27f534802377dfe823d09050ca1ca /development/uisp | |
parent | 4f479efe3b4edf437a819a15e3b8b994d7d11eda (diff) | |
download | slackbuilds-2eaad3a6f60910a4a10a43ba6c14aa94796e18fd.tar.gz |
development/uisp: Removed from 13.0 repository
Diffstat (limited to 'development/uisp')
-rw-r--r-- | development/uisp/README | 5 | ||||
-rw-r--r-- | development/uisp/slack-desc | 19 | ||||
-rw-r--r-- | development/uisp/uisp.SlackBuild | 56 | ||||
-rw-r--r-- | development/uisp/uisp.info | 8 |
4 files changed, 0 insertions, 88 deletions
diff --git a/development/uisp/README b/development/uisp/README deleted file mode 100644 index 58872e83a8..0000000000 --- a/development/uisp/README +++ /dev/null @@ -1,5 +0,0 @@ -UISP is a tool for AVR (and AT89S) microcontrollers which can -interface to many hardware in-system programmers. UISP allows you to -program your microcontroller through the parallel or serial port of -your computer. - diff --git a/development/uisp/slack-desc b/development/uisp/slack-desc deleted file mode 100644 index f5aa111abe..0000000000 --- a/development/uisp/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------------------------------------------------------| -uisp: uisp (AVR In-System Programmer) -uisp: -uisp: UISP is a tool for AVR (and AT89S) microcontrollers which can -uisp: interface to many hardware in-system programmers. UISP allows you to -uisp: program your microcontroller through the parallel or serial port of -uisp: your computer. -uisp: -uisp: http://www.nongnu.org/uisp/ -uisp: -uisp: -uisp: diff --git a/development/uisp/uisp.SlackBuild b/development/uisp/uisp.SlackBuild deleted file mode 100644 index c4a944a62e..0000000000 --- a/development/uisp/uisp.SlackBuild +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh - -# Slackware build script for uisp -# Written by B.Ton <b.t.ton@student.utwente.nl> -# Modified by the SlackBuilds.org project - -set -e - -PRGNAM=uisp -VERSION=20050207 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr - -# Dont treat warnings as errors -AM_CXXFLAGS="-Wall" make -e || exit 1 -make install-strip DESTDIR=$PKG - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -mv $PKG/usr/share/doc $PKG/usr -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -rmdir $PKG/usr/share - -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/uisp/uisp.info b/development/uisp/uisp.info deleted file mode 100644 index c0bb88043b..0000000000 --- a/development/uisp/uisp.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="uisp" -VERSION="20050207" -HOMEPAGE="http://www.nongnu.org/uisp/" -DOWNLOAD="http://savannah.nongnu.org/download/uisp/uisp-20050207.tar.gz" -MD5SUM="b1e499d5a1011489635c1a0e482b1627" -MAINTAINER="B.Ton" -EMAIL="b.t.ton@student.utwente.nl" -APPROVED="robw810" |