diff options
author | slakmagik <jsun@freeshell.org> | 2010-05-11 20:01:24 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 20:01:24 +0200 |
commit | d89427c9759e06b533d7e7d342f3bceccab7fcf9 (patch) | |
tree | c3b5dc77da57a87f1dec28d92ccc230210ac4b30 /multimedia | |
parent | 6c75aff15f084c19b2d699990e00ff02829ceb95 (diff) | |
download | slackbuilds-d89427c9759e06b533d7e7d342f3bceccab7fcf9.tar.gz |
multimedia/shntool: Added to 12.0 repository
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/shntool/README | 10 | ||||
-rw-r--r-- | multimedia/shntool/shntool.SlackBuild | 62 | ||||
-rw-r--r-- | multimedia/shntool/shntool.info | 8 | ||||
-rw-r--r-- | multimedia/shntool/slack-desc | 19 |
4 files changed, 99 insertions, 0 deletions
diff --git a/multimedia/shntool/README b/multimedia/shntool/README new file mode 100644 index 0000000000..900798a7ca --- /dev/null +++ b/multimedia/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/multimedia/shntool/shntool.SlackBuild b/multimedia/shntool/shntool.SlackBuild new file mode 100644 index 0000000000..fb946499bc --- /dev/null +++ b/multimedia/shntool/shntool.SlackBuild @@ -0,0 +1,62 @@ +#!/bin/sh + +# Slackware build script for shntool +# Written by slakmagik <jsun@freeshell.org> +# Released under the WTFPL + +PRGNAM=shntool +VERSION=3.0.7 +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/multimedia/shntool/shntool.info b/multimedia/shntool/shntool.info new file mode 100644 index 0000000000..acbffdee74 --- /dev/null +++ b/multimedia/shntool/shntool.info @@ -0,0 +1,8 @@ +PRGNAM="shntool" +VERSION="3.0.7" +HOMEPAGE="http://shnutils.freeshell.org/shntool/" +DOWNLOAD="http://shnutils.freeshell.org/shntool/dist/src/shntool-3.0.7.tar.gz" +MD5SUM="248c2ed2142b8cc3033d753d286b0115" +MAINTAINER="slakmagik" +EMAIL="jsun@freeshell.org" +APPROVED="David Somero" diff --git a/multimedia/shntool/slack-desc b/multimedia/shntool/slack-desc new file mode 100644 index 0000000000..51d7f3fc1b --- /dev/null +++ b/multimedia/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: |