mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
development/gputils: Added to 12.2 repository
This commit is contained in:
parent
490c334a1f
commit
105cb993e4
4 changed files with 102 additions and 0 deletions
6
development/gputils/README
Normal file
6
development/gputils/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
GPUTILS is a collection of tools for the Microchip (TM) PIC
|
||||
microcontrollers. It includes gpasm, gplink, and gplib.
|
||||
It's distributed under the terms of the GNU Public License.
|
||||
See the gnupic page for other GNU PIC tools such as gpsim,
|
||||
a gputils compatible simulator.
|
||||
|
69
development/gputils/gputils.SlackBuild
Normal file
69
development/gputils/gputils.SlackBuild
Normal file
|
@ -0,0 +1,69 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gputils
|
||||
# Written by GPLeo <slackbuilds@gmail.com>
|
||||
|
||||
PRGNAM=gputils
|
||||
VERSION=${VERSION:-0.13.7}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README TODO"
|
||||
|
||||
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-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure --prefix=/usr \
|
||||
--mandir=/usr/man \
|
||||
--program-prefix= \
|
||||
--program-suffix= \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( 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
|
||||
)
|
||||
|
||||
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
|
8
development/gputils/gputils.info
Normal file
8
development/gputils/gputils.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gputils"
|
||||
VERSION="0.13.7"
|
||||
HOMEPAGE="http://gputils.sourceforge.net/"
|
||||
DOWNLOAD="http://ufpr.dl.sourceforge.net/sourceforge/gputils/gputils-0.13.7.tar.gz"
|
||||
MD5SUM="242e33919e9c318d6ac58b6db291d20e"
|
||||
MAINTAINER="GPLeo"
|
||||
EMAIL="slackbuilds@gmail.com"
|
||||
APPROVED="dsomero"
|
19
development/gputils/slack-desc
Normal file
19
development/gputils/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
gputils: gputils (GNU PIC Utilities)
|
||||
gputils:
|
||||
gputils: GPUTILS is a collection of tools for the Microchip (TM) PIC
|
||||
gputils: microcontrollers. It includes gpasm, gplink, and gplib.
|
||||
gputils: It's distributed under the terms of the GNU Public License.
|
||||
gputils: See the gnupic page for other GNU PIC tools such as gpsim,
|
||||
gputils: a gputils compatible simulator.
|
||||
gputils:
|
||||
gputils: Homepage: http://gputils.sourceforge.net/
|
||||
gputils:
|
||||
gputils:
|
Loading…
Reference in a new issue