diff options
author | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
commit | dee9f17b595ea903a982d31d1124b302bb17e2ff (patch) | |
tree | 295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/cuetools | |
parent | 380530d02a5449fdef97b63b394a6743c3de0092 (diff) |
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/cuetools')
-rw-r--r-- | community/cuetools/PKGBUILD | 33 | ||||
-rw-r--r-- | community/cuetools/cuetag.patch | 37 |
2 files changed, 0 insertions, 70 deletions
diff --git a/community/cuetools/PKGBUILD b/community/cuetools/PKGBUILD deleted file mode 100644 index 439ce866c..000000000 --- a/community/cuetools/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 64846 2012-02-18 17:42:48Z stativ $ -# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> -pkgname=cuetools -pkgver=1.3.1 -pkgrel=5 -pkgdesc="Set of utilities for working with cue files and toc files" -arch=('i686' 'x86_64') -url="http://developer.berlios.de/projects/cuetools/" -license=('GPL') -depends=('glibc') -source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz \ - cuetag.patch) -md5sums=('45575f7a1bdc6615599fa6cb49845cca' - '38969241a7b6ac88e2f1b46c3da0ecc2') - -build() { - cd "$srcdir"/$pkgname-$pkgver - - # fix cuetag - patch -Np0 < "$srcdir"/cuetag.patch - sed -i -e 's/--import-vc-from/--import-tags-from/' \ - -e 's/--remove-vc-all/--remove-all-tags/' extras/cuetag.sh - - ./configure --prefix=/usr --mandir=/usr/share/man - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - - make DESTDIR="$pkgdir" install - install -m755 extras/cuetag.sh "$pkgdir"/usr/bin/cuetag.sh -} diff --git a/community/cuetools/cuetag.patch b/community/cuetools/cuetag.patch deleted file mode 100644 index cd41dcd56..000000000 --- a/community/cuetools/cuetag.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- extras/cuetag.sh 2006-09-06 14:24:47.000000000 -0400 -+++ extras/cuetag.sh 2007-01-26 00:13:23.000000000 -0500 -@@ -63,7 +63,7 @@ - (for field in $fields; do - value="" - for conv in `eval echo \\$$field`; do -- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file` -+ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"` - - if [ -n "$value" ]; then - echo "$field=$value" -@@ -96,7 +96,7 @@ - for field in $fields; do - value="" - for conv in `eval echo \\$$field`; do -- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file` -+ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"` - - if [ -n "$value" ]; then - break -@@ -141,14 +141,14 @@ - cue_file=$1 - shift - -- ntrack=`cueprint -d '%N' $cue_file` -+ ntrack=`cueprint -d '%N' "$cue_file"` - trackno=1 - - if [ $# -ne $ntrack ]; then - echo "warning: number of files does not match number of tracks" - fi - -- for file in $@; do -+ for file in "$@"; do - case $file in - *.[Ff][Ll][Aa][Cc]) - vorbis $trackno "$file" |