diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-13 00:42:32 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-13 00:42:32 +0200 |
commit | eab6556b6062711aa88a2942afd4a7e71ca60dc3 (patch) | |
tree | 42c075432cc25891a3d521d1041657c1b90685d3 /system | |
parent | 645fe724c2edccde96f8746e185069f2bdacae16 (diff) | |
download | slackbuilds-eab6556b6062711aa88a2942afd4a7e71ca60dc3.tar.gz |
system/xfburn: Updated for version 0.4.3
Diffstat (limited to 'system')
-rw-r--r-- | system/xfburn/README | 3 | ||||
-rw-r--r-- | system/xfburn/slack-desc | 10 | ||||
-rw-r--r-- | system/xfburn/xfburn.SlackBuild | 12 | ||||
-rw-r--r-- | system/xfburn/xfburn.info | 8 |
4 files changed, 19 insertions, 14 deletions
diff --git a/system/xfburn/README b/system/xfburn/README index bfd3cc0fd2..6a1e0ace81 100644 --- a/system/xfburn/README +++ b/system/xfburn/README @@ -5,5 +5,4 @@ It can blank CD-RWs, burn and create iso images, as well as burn personal compositions of data to either CD or DVD. It is currently under heavy development. -This requires libburn and libisofs, both of which are available -at SlackBuilds.org. +This requires libburn and libisofs. diff --git a/system/xfburn/slack-desc b/system/xfburn/slack-desc index d0dafff231..8f529569c6 100644 --- a/system/xfburn/slack-desc +++ b/system/xfburn/slack-desc @@ -7,13 +7,13 @@ |-----handy-ruler-----------------------------------------------------| xfburn: xfburn (cd/dvd burning tool for Xfce) -xfburn: +xfburn: xfburn: Xfburn is a simple CD/DVD burning tool based on libburnia xfburn: libraries. It can blank CD-RWs, burn and create iso images, xfburn: as well as burn personal compositions of data to either xfburn: CD or DVD. It is currently under heavy development. -xfburn: +xfburn: xfburn: Homepage: http://www.xfce.org/projects/xfburn/ -xfburn: -xfburn: -xfburn: +xfburn: +xfburn: +xfburn: diff --git a/system/xfburn/xfburn.SlackBuild b/system/xfburn/xfburn.SlackBuild index a4f4f85cec..8868ccc2e5 100644 --- a/system/xfburn/xfburn.SlackBuild +++ b/system/xfburn/xfburn.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for xfburn -# Copyright 2008 Robby Workman, Northport, Alabama, USA +# Copyright 2008-2010 Robby Workman, Northport, Alabama, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=xfburn -VERSION=0.4.1 +VERSION=0.4.3 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -60,6 +63,7 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --enable-static=no \ @@ -72,7 +76,7 @@ make install DESTDIR=$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 + xargs strip --strip-unneeded 2> /dev/null || true ) ( cd $PKG/usr/man @@ -91,4 +95,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/xfburn/xfburn.info b/system/xfburn/xfburn.info index 10fe70ae85..687faa6139 100644 --- a/system/xfburn/xfburn.info +++ b/system/xfburn/xfburn.info @@ -1,8 +1,10 @@ PRGNAM="xfburn" -VERSION="0.4.1" +VERSION="0.4.3" HOMEPAGE="http://www.xfce.org/projects/xfburn/" -DOWNLOAD="http://goodies.xfce.org/releases/xfburn/xfburn-0.4.1.tar.bz2" -MD5SUM="f5ed76149fd348504d4a75830b4996dc" +DOWNLOAD="http://archive.xfce.org/src/apps/xfburn/0.4/xfburn-0.4.3.tar.bz2" +MD5SUM="147cdc2d909e751125be16103b8dc81f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" MAINTAINER="Robby Workman" EMAIL="rw@rlworkman.net" APPROVED="michiel" |