diff options
author | Dugan Chen <dugan_c@fastmail.fm> | 2010-05-11 20:00:21 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:00:21 +0200 |
commit | 1ca27097ea2471e21a427b41a01a925cf084adeb (patch) | |
tree | 437eac5722ac2e1f3ff07c90e075b6b139d70e55 /development/astyle | |
parent | 8307fc209b0db590bc49a9405a3b2078482a6100 (diff) | |
download | slackbuilds-1ca27097ea2471e21a427b41a01a925cf084adeb.tar.gz |
development/astyle: Added to 12.0 repository
Diffstat (limited to 'development/astyle')
-rw-r--r-- | development/astyle/README | 5 | ||||
-rw-r--r-- | development/astyle/astyle.SlackBuild | 57 | ||||
-rw-r--r-- | development/astyle/astyle.info | 8 | ||||
-rw-r--r-- | development/astyle/slack-desc | 19 |
4 files changed, 89 insertions, 0 deletions
diff --git a/development/astyle/README b/development/astyle/README new file mode 100644 index 0000000000..2bd1e94e4b --- /dev/null +++ b/development/astyle/README @@ -0,0 +1,5 @@ +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. diff --git a/development/astyle/astyle.SlackBuild b/development/astyle/astyle.SlackBuild new file mode 100644 index 0000000000..eb7de7fe9a --- /dev/null +++ b/development/astyle/astyle.SlackBuild @@ -0,0 +1,57 @@ +#!/bin/sh + +# Slackware build script for Artistic Style + +# Written by Dugan Chen (dugan_c@fastmail.fm) + +set -e + +PRGNAM=astyle +SRCPK=astyle_1.21__linux.tar.gz +VERSION=1.21 +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 +tar -xzvf $CWD/$SRCPK +cd $PRGNAM +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +cd build +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 + 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 diff --git a/development/astyle/astyle.info b/development/astyle/astyle.info new file mode 100644 index 0000000000..c8a6f4effb --- /dev/null +++ b/development/astyle/astyle.info @@ -0,0 +1,8 @@ +PRGNAM="astyle" +VERSION="1.21" +HOMEPAGE="http://astyle.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/astyle/astyle_1.21__linux.tar.gz" +MD5SUM="c3e2068e9bf64bcad3e1d69628c4d241" +MAINTAINER="Dugan Chen" +EMAIL="dugan_c@fastmail.fm" +APPROVED="rworkman" diff --git a/development/astyle/slack-desc b/development/astyle/slack-desc new file mode 100644 index 0000000000..7d30aa0d57 --- /dev/null +++ b/development/astyle/slack-desc @@ -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------------------------------------------------------| +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: |