From 9f21562211b2276ea38adb05c5af503f92ade371 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Tue, 11 May 2010 20:30:50 +0200 Subject: audio/mp3check: Moved from multimedia --- audio/mp3check/README | 4 +++ audio/mp3check/mp3check.SlackBuild | 59 +++++++++++++++++++++++++++++++++ audio/mp3check/mp3check.info | 8 +++++ audio/mp3check/slack-desc | 19 +++++++++++ multimedia/mp3check/README | 4 --- multimedia/mp3check/mp3check.SlackBuild | 59 --------------------------------- multimedia/mp3check/mp3check.info | 8 ----- multimedia/mp3check/slack-desc | 19 ----------- 8 files changed, 90 insertions(+), 90 deletions(-) create mode 100644 audio/mp3check/README create mode 100644 audio/mp3check/mp3check.SlackBuild create mode 100644 audio/mp3check/mp3check.info create mode 100644 audio/mp3check/slack-desc delete mode 100644 multimedia/mp3check/README delete mode 100644 multimedia/mp3check/mp3check.SlackBuild delete mode 100644 multimedia/mp3check/mp3check.info delete mode 100644 multimedia/mp3check/slack-desc diff --git a/audio/mp3check/README b/audio/mp3check/README new file mode 100644 index 0000000000..f97cf52bfb --- /dev/null +++ b/audio/mp3check/README @@ -0,0 +1,4 @@ +mp3check can check MP3 files for consistency and print several errors and +warnings, list stream attributes (in color). Layer 1, 2, 3, MPEG1.0+2.0 are +currently supported. CRC check for layer 3. It can process directories +recursively and also fix certain errors. diff --git a/audio/mp3check/mp3check.SlackBuild b/audio/mp3check/mp3check.SlackBuild new file mode 100644 index 0000000000..d327b9d930 --- /dev/null +++ b/audio/mp3check/mp3check.SlackBuild @@ -0,0 +1,59 @@ +#!/bin/sh + +# Slackware build script for mp3check +# Written by Audrius Kažukauskas + +PRGNAM=mp3check +VERSION=0.8.3 +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 # Exit on most errors + +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 . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man + +make +make install-strip DESTDIR=$PKG + +( 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 +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING ChangeLog FAQ HISTORY INSTALL THANKS TODO \ + $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/audio/mp3check/mp3check.info b/audio/mp3check/mp3check.info new file mode 100644 index 0000000000..2c06936853 --- /dev/null +++ b/audio/mp3check/mp3check.info @@ -0,0 +1,8 @@ +PRGNAM="mp3check" +VERSION="0.8.3" +HOMEPAGE="http://jo.ath.cx/soft/mp3check/" +DOWNLOAD="http://jo.ath.cx/soft/mp3check/mp3check-0.8.3.tar.gz" +MD5SUM="09ff0568e7a94b8fd1a9303d2a53fe33" +MAINTAINER="Audrius Kazukauskas" +EMAIL="neobug@tornado.ktu.lt" +APPROVED="rworkman" diff --git a/audio/mp3check/slack-desc b/audio/mp3check/slack-desc new file mode 100644 index 0000000000..0c935aa6d1 --- /dev/null +++ b/audio/mp3check/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------------------------------------------------------| +mp3check: mp3check (check MP3 files for integrity) +mp3check: +mp3check: mp3check can check MP3 files for consistency and print several +mp3check: errors and warnings, list stream attributes (in color). +mp3check: Layer 1, 2, 3, and MPEG1.0+2.0 are currently supported. +mp3check: CRC check for layer 3. Can process directories recursively. +mp3check: Can also fix certain errors. +mp3check: +mp3check: Homepage: http://jo.ath.cx/soft/mp3check/ +mp3check: +mp3check: diff --git a/multimedia/mp3check/README b/multimedia/mp3check/README deleted file mode 100644 index f97cf52bfb..0000000000 --- a/multimedia/mp3check/README +++ /dev/null @@ -1,4 +0,0 @@ -mp3check can check MP3 files for consistency and print several errors and -warnings, list stream attributes (in color). Layer 1, 2, 3, MPEG1.0+2.0 are -currently supported. CRC check for layer 3. It can process directories -recursively and also fix certain errors. diff --git a/multimedia/mp3check/mp3check.SlackBuild b/multimedia/mp3check/mp3check.SlackBuild deleted file mode 100644 index d327b9d930..0000000000 --- a/multimedia/mp3check/mp3check.SlackBuild +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/sh - -# Slackware build script for mp3check -# Written by Audrius Kažukauskas - -PRGNAM=mp3check -VERSION=0.8.3 -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 # Exit on most errors - -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 . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man - -make -make install-strip DESTDIR=$PKG - -( 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 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING ChangeLog FAQ HISTORY INSTALL THANKS TODO \ - $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/multimedia/mp3check/mp3check.info b/multimedia/mp3check/mp3check.info deleted file mode 100644 index 2c06936853..0000000000 --- a/multimedia/mp3check/mp3check.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="mp3check" -VERSION="0.8.3" -HOMEPAGE="http://jo.ath.cx/soft/mp3check/" -DOWNLOAD="http://jo.ath.cx/soft/mp3check/mp3check-0.8.3.tar.gz" -MD5SUM="09ff0568e7a94b8fd1a9303d2a53fe33" -MAINTAINER="Audrius Kazukauskas" -EMAIL="neobug@tornado.ktu.lt" -APPROVED="rworkman" diff --git a/multimedia/mp3check/slack-desc b/multimedia/mp3check/slack-desc deleted file mode 100644 index 0c935aa6d1..0000000000 --- a/multimedia/mp3check/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -mp3check: mp3check (check MP3 files for integrity) -mp3check: -mp3check: mp3check can check MP3 files for consistency and print several -mp3check: errors and warnings, list stream attributes (in color). -mp3check: Layer 1, 2, 3, and MPEG1.0+2.0 are currently supported. -mp3check: CRC check for layer 3. Can process directories recursively. -mp3check: Can also fix certain errors. -mp3check: -mp3check: Homepage: http://jo.ath.cx/soft/mp3check/ -mp3check: -mp3check: -- cgit v1.2.3