mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/uisp: Removed from 13.0 repository
This commit is contained in:
parent
4f479efe3b
commit
2eaad3a6f6
4 changed files with 0 additions and 88 deletions
|
@ -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.
|
|
||||||
|
|
|
@ -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:
|
|
|
@ -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
|
|
|
@ -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"
|
|
Loading…
Reference in a new issue