From 80823352c1fc8c16b4ef0f3ff949aab0c0255b98 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 11 May 2010 22:53:42 +0200 Subject: development/xmlstarlet: Added to 12.1 repository --- development/xmlstarlet/README | 6 +++ development/xmlstarlet/slack-desc | 19 +++++++ development/xmlstarlet/xmlstarlet.SlackBuild | 78 ++++++++++++++++++++++++++++ development/xmlstarlet/xmlstarlet.info | 8 +++ 4 files changed, 111 insertions(+) create mode 100644 development/xmlstarlet/README create mode 100644 development/xmlstarlet/slack-desc create mode 100644 development/xmlstarlet/xmlstarlet.SlackBuild create mode 100644 development/xmlstarlet/xmlstarlet.info (limited to 'development/xmlstarlet') diff --git a/development/xmlstarlet/README b/development/xmlstarlet/README new file mode 100644 index 0000000000..738b5d3c9a --- /dev/null +++ b/development/xmlstarlet/README @@ -0,0 +1,6 @@ +xmlstarlet (command line xml tool) + +XMLStarlet is a command line XML toolkit that can be used to +transform, query, validate, and edit XML documents and files using +a simple set of shell commands, which work similarly to 'grep', +'sed', 'awk', 'tr', 'diff', or 'patch' on plain text files. diff --git a/development/xmlstarlet/slack-desc b/development/xmlstarlet/slack-desc new file mode 100644 index 0000000000..22f3360256 --- /dev/null +++ b/development/xmlstarlet/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------------------------------------------------------| +xmlstarlet: xmlstarlet (command line xml tool) +xmlstarlet: +xmlstarlet: XMLStarlet is a command line XML toolkit that can be used to +xmlstarlet: transform, query, validate, and edit XML documents and files using +xmlstarlet: a simple set of shell commands, which work similarly to 'grep', +xmlstarlet: 'sed', 'awk', 'tr', 'diff', or 'patch' on plain text files. +xmlstarlet: +xmlstarlet: +xmlstarlet: Homepage http://sourceforge.net/projects/xmlstar/ +xmlstarlet: +xmlstarlet: diff --git a/development/xmlstarlet/xmlstarlet.SlackBuild b/development/xmlstarlet/xmlstarlet.SlackBuild new file mode 100644 index 0000000000..cf4931010f --- /dev/null +++ b/development/xmlstarlet/xmlstarlet.SlackBuild @@ -0,0 +1,78 @@ +#!/bin/sh + +# Slackware build script for xmlstarlet + +# Written by Vincent Batts, vbatts@gmail.com + +# Exit on most errors +set -e + +PRGNAM=xmlstarlet +VERSION=1.0.1 +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-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man + +sed -i 's/pthread/pthread -lgcrypt/' src/Makefile + +# Compile the application and install it into the $PKG directory +make +make install DESTDIR=$PKG + +# Strip binaries and libraries +( 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 +) + +# Compress man pages +( 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 +) + +# Copy program documentation into the package +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog Copyright INSTALL NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Copy the slack-desc into ./install +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n /tmp/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/xmlstarlet/xmlstarlet.info b/development/xmlstarlet/xmlstarlet.info new file mode 100644 index 0000000000..bab325725b --- /dev/null +++ b/development/xmlstarlet/xmlstarlet.info @@ -0,0 +1,8 @@ +PRGNAM="xmlstarlet" +VERSION="1.0.1" +HOMEPAGE="http://sourceforge.net/projects/xmlstar/" +DOWNLOAD="http://downloads.sourceforge.net/xmlstar/xmlstarlet-1.0.1.tar.gz" +MD5SUM="8deb71834bcdfb4443c258a1f0042fce" +MAINTAINER="Vincent Batts" +EMAIL="vbatts at gmail.com" +APPROVED="David Somero" \ No newline at end of file -- cgit v1.2.3