development/astyle: Removed from 13.0 repository
This commit is contained in:
parent
c5637f9a87
commit
7ec8f3a72d
|
@ -1,5 +0,0 @@
|
|||
astyle (Artistic Style code beautifier)
|
||||
|
||||
Artistic Style is a code indenter, beautifier and formatter for C, C++, C#,
|
||||
and Java. It can be used from the command-line or linked into other programs.
|
||||
Complete documentation is included.
|
|
@ -1,61 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Artistic Style
|
||||
|
||||
# Written by Dugan Chen (dugan_c@fastmail.fm)
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=astyle
|
||||
VERSION=1.22
|
||||
SRCPK=astyle_$VERSION\_linux.tar.gz
|
||||
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"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM
|
||||
tar -xzvf $CWD/$SRCPK
|
||||
cd $PRGNAM
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
cd buildgcc
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
make release shared static
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cp -a ../bin/astyle $PKG/usr/bin
|
||||
mkdir -p $PKG/usr/lib
|
||||
cp -a ../bin/libastyle.* $PKG/usr/lib
|
||||
|
||||
( 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
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $TMP/$PRGNAM/doc/* $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
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="astyle"
|
||||
VERSION="1.22"
|
||||
HOMEPAGE="http://astyle.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/astyle/astyle_1.22_linux.tar.gz"
|
||||
MD5SUM="f319ee4e2538f5e6255211975b4e36cc"
|
||||
MAINTAINER="Dugan Chen"
|
||||
EMAIL="dugan (underscore) c (at) fastmail (dot) fm"
|
||||
APPROVED="David Somero"
|
|
@ -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------------------------------------------------------|
|
||||
astyle: astyle (Artistic Style code beautifier)
|
||||
astyle:
|
||||
astyle: Artistic Style is a code indenter, beautifier and formatter for C,
|
||||
astyle: C++, C# and Java. It can be used from the command-line or
|
||||
astyle: linked into other programs.
|
||||
astyle:
|
||||
astyle: Complete documentation is included.
|
||||
astyle:
|
||||
astyle: Visit the Artistic Style project online:
|
||||
astyle: http://astyle.sourceforge.net/
|
||||
astyle:
|
Loading…
Reference in New Issue