From 1ca27097ea2471e21a427b41a01a925cf084adeb Mon Sep 17 00:00:00 2001 From: Dugan Chen Date: Tue, 11 May 2010 20:00:21 +0200 Subject: development/astyle: Added to 12.0 repository --- development/astyle/README | 5 ++++ development/astyle/astyle.SlackBuild | 57 ++++++++++++++++++++++++++++++++++++ development/astyle/astyle.info | 8 +++++ development/astyle/slack-desc | 19 ++++++++++++ 4 files changed, 89 insertions(+) create mode 100644 development/astyle/README create mode 100644 development/astyle/astyle.SlackBuild create mode 100644 development/astyle/astyle.info create mode 100644 development/astyle/slack-desc 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: -- cgit v1.2.3