From 14af457f361896cda907570c69ee59c8593a6134 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Tue, 11 May 2010 20:30:55 +0200 Subject: audio/shntool: Moved from multimedia --- audio/shntool/README | 10 +++++++ audio/shntool/shntool.SlackBuild | 62 ++++++++++++++++++++++++++++++++++++++++ audio/shntool/shntool.info | 8 ++++++ audio/shntool/slack-desc | 19 ++++++++++++ 4 files changed, 99 insertions(+) create mode 100644 audio/shntool/README create mode 100644 audio/shntool/shntool.SlackBuild create mode 100644 audio/shntool/shntool.info create mode 100644 audio/shntool/slack-desc (limited to 'audio/shntool') diff --git a/audio/shntool/README b/audio/shntool/README new file mode 100644 index 0000000000..900798a7ca --- /dev/null +++ b/audio/shntool/README @@ -0,0 +1,10 @@ +shntool is a command-line utility to view and/or modify WAVE data +and properties. It runs in several different operating modes, and +supports various lossless audio formats. + +shntool is comprised of three parts - its core, mode modules, and +format modules. This helps to make the code easier to maintain, as +well as aid other programmers in developing new functionality. The +distribution archive contains a file named 'modules.howto' that +describes how to create a new mode or format module, for those so +inclined. diff --git a/audio/shntool/shntool.SlackBuild b/audio/shntool/shntool.SlackBuild new file mode 100644 index 0000000000..4223211fc3 --- /dev/null +++ b/audio/shntool/shntool.SlackBuild @@ -0,0 +1,62 @@ +#!/bin/sh + +# Slackware build script for shntool +# Written by slakmagik +# Released under the WTFPL + +PRGNAM=shntool +VERSION=3.0.8 +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 + +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 . +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 \ + --mandir=/usr/man + +make +make DESTDIR=$PKG install + +( 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 [ACINR]* doc/* $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +gzip -9 $PKG/usr/man/man1/$PRGNAM.1 + +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/audio/shntool/shntool.info b/audio/shntool/shntool.info new file mode 100644 index 0000000000..59d853f32c --- /dev/null +++ b/audio/shntool/shntool.info @@ -0,0 +1,8 @@ +PRGNAM="shntool" +VERSION="3.0.8" +HOMEPAGE="http://shnutils.freeshell.org/shntool/" +DOWNLOAD="http://shnutils.freeshell.org/shntool/dist/src/shntool-3.0.8.tar.gz" +MD5SUM="916a5a8625288a5f9edc2ef3567f51d8" +MAINTAINER="slakmagik" +EMAIL="jsun@freeshell.org" +APPROVED="dsomero" diff --git a/audio/shntool/slack-desc b/audio/shntool/slack-desc new file mode 100644 index 0000000000..51d7f3fc1b --- /dev/null +++ b/audio/shntool/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------------------------------------------------------| +shntool: shntool (a multi-purpose WAVE data processing and reporting utility) +shntool: +shntool: shntool is a command-line utility to view and/or modify WAVE data +shntool: and properties. It runs in several different operating modes, and +shntool: supports various lossless audio formats. +shntool: +shntool: Homepage: http://shnutils.freeshell.org/shntool/ +shntool: +shntool: +shntool: +shntool: -- cgit v1.2.3