summaryrefslogtreecommitdiffstats
path: root/xfburn/build/xfburn.SlackBuild
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2009-09-26 15:12:52 +0000
committer Eric Hameleers <alien@slackware.com>2009-09-26 15:12:52 +0000
commit935fc1ebd6477478ac8ab769c23454d6a1c94df6 (patch)
tree489086183c3a454f3dd746b16a3a84bd5212862a /xfburn/build/xfburn.SlackBuild
parent06b1e46aca65c75ac1bf6a8f5a0e8b0b339850d0 (diff)
downloadasb-935fc1ebd6477478ac8ab769c23454d6a1c94df6.tar.gz
asb-935fc1ebd6477478ac8ab769c23454d6a1c94df6.tar.xz
Updated to 0.4.2
Diffstat (limited to 'xfburn/build/xfburn.SlackBuild')
-rwxr-xr-xxfburn/build/xfburn.SlackBuild32
1 files changed, 16 insertions, 16 deletions
diff --git a/xfburn/build/xfburn.SlackBuild b/xfburn/build/xfburn.SlackBuild
index 3a28899b..a7a1d2c1 100755
--- a/xfburn/build/xfburn.SlackBuild
+++ b/xfburn/build/xfburn.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright (c) 2008, 2009 Eric Hameleers, Eindhoven, Netherlands
+# Copyright (c) 2008, 2009 Eric Hameleers, Eindhoven, Netherlands
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -38,6 +38,8 @@
# * Update
# 0.4.0-1: 09/jan/2009 by Eric Hameleers <alien@slackware.com>
# * Update
+# 0.4.2-1: 26/sep/2009 by Eric Hameleers <alien@slackware.com>
+# * Update
#
# Run 'sh xfburn.SlackBuild' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -48,7 +50,7 @@
# Set initial variables:
PRGNAM=xfburn
-VERSION=${VERSION:-0.4.0}
+VERSION=${VERSION:-0.4.2}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-alien}
@@ -90,9 +92,6 @@ case "$ARCH" in
x86_64) SLKCFLAGS="-O2 -fPIC"
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
;;
- athlon-xp) SLKCFLAGS="-march=athlon-xp -O3 -pipe -fomit-frame-pointer"
- SLKLDFLAGS=""; LIBDIRSUFFIX=""
- ;;
esac
# Create working directories:
@@ -143,16 +142,17 @@ echo Building ...
LDFLAGS="$SLKLDFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
CFLAGS="$SLKCFLAGS" \
-./configure --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --localstatedir=/var \
- --sysconfdir=/etc \
- --program-prefix="" \
- --program-suffix="" \
- --build=$ARCH-slackware-linux \
- 2>&1 | tee $OUTPUT/configure-${PRGNAM}.log
-make 2>&1 | tee $OUTPUT/make-${PRGNAM}.log
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --localstatedir=/var \
+ --sysconfdir=/etc \
+ --program-prefix="" \
+ --program-suffix="" \
+ --build=$ARCH-slackware-linux \
+ 2>&1 | tee $OUTPUT/configure-${PRGNAM}.log
+make 2>&1 | tee $OUTPUT/make-${PRGNAM}.log
make DESTDIR=$PKG install 2>&1 |tee $OUTPUT/install-${PRGNAM}.log
# Add this to the doinst.sh:
@@ -160,10 +160,10 @@ make DESTDIR=$PKG install 2>&1 |tee $OUTPUT/install-${PRGNAM}.log
cat <<EOT >> $PKG/install/doinst.sh
# Update the desktop database:
if [ -x usr/bin/update-desktop-database ]; then
- chroot . /usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1
+ chroot . /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
fi
if [ -x usr/bin/gtk-update-icon-cache ]; then
- chroot . usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor > /dev/null 2>&1
+ chroot . /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor > /dev/null 2>&1
fi
EOT