system/xfburn: Updated for version 0.4.3

This commit is contained in:
Robby Workman 2010-05-13 00:42:32 +02:00 committed by Michiel van Wessem
parent 645fe724c2
commit eab6556b60
4 changed files with 19 additions and 14 deletions

View file

@ -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.

View file

@ -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:

View file

@ -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}

View file

@ -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"