mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/avrdude: Updated for version 5.11.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
41b839dabf
commit
dd5795e152
5 changed files with 32 additions and 19 deletions
|
@ -1,3 +1,3 @@
|
|||
Avrdude is an open source utility to download/upload/manipulate the ROM and
|
||||
EEPROM contents of AVR microcontrollers using the in-system programming
|
||||
Avrdude is an open source utility to download/upload/manipulate the ROM and
|
||||
EEPROM contents of AVR microcontrollers using the in-system programming
|
||||
technique (ISP).
|
||||
|
|
|
@ -5,16 +5,14 @@
|
|||
# Written by Dustin Schnee <schnee72{at}gmail{dot}com>
|
||||
|
||||
PRGNAM=avrdude
|
||||
VERSION=${VERSION:-5.10}
|
||||
VERSION=${VERSION:-5.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -67,22 +65,23 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
( 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
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# avoid overwriting configuration
|
||||
mv $PKG/etc/$PRGNAM.conf $PKG/etc/$PRGNAM.conf.new
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="avrdude"
|
||||
VERSION="5.10"
|
||||
VERSION="5.11"
|
||||
HOMEPAGE="http://www.nongnu.org/avrdude/"
|
||||
DOWNLOAD="http://download.savannah.gnu.org/releases-noredirect/avrdude/avrdude-5.10.tar.gz"
|
||||
MD5SUM="69b082683047e054348088fd63bad2ff"
|
||||
DOWNLOAD="http://download.savannah.gnu.org/releases-noredirect/avrdude/avrdude-5.11.tar.gz"
|
||||
MD5SUM="a03edce46cae0e8a825db0fe38a6b3a9"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Dustin Schnee"
|
||||
EMAIL="schnee72{at}gmail{dot}com"
|
||||
APPROVED="dsomero"
|
||||
APPROVED="Niels Horn"
|
||||
|
|
14
development/avrdude/doinst.sh
Normal file
14
development/avrdude/doinst.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
# If there's no config file by that name, mv it over:
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
# toss the redundant copy
|
||||
rm $NEW
|
||||
fi
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
config etc/avrdude.conf.new
|
|
@ -11,10 +11,10 @@ avrdude:
|
|||
avrdude: Avrdude is an open source utility to download/upload/manipulate the
|
||||
avrdude: ROM and EEPROM contents of AVR microcontrollers using the in-system
|
||||
avrdude: programming technique (ISP).
|
||||
avrdude:
|
||||
avrdude: Homepage: http://www.nongnu.org/avrdude/
|
||||
avrdude:
|
||||
avrdude:
|
||||
avrdude:
|
||||
avrdude: Homepage: http://www.nongnu.org/avrdude/
|
||||
avrdude:
|
||||
avrdude:
|
||||
avrdude:
|
||||
avrdude:
|
||||
|
||||
|
|
Loading…
Reference in a new issue