diff options
author | Erik Hanson <erik@slackbuilds.org> | 2010-05-13 00:40:42 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-13 00:40:42 +0200 |
commit | eb7d11a860e0e84174a0949195902a6fc3e765d2 (patch) | |
tree | 713262edf9a8ce909f2ebee68e4e7533fff071ac /system/isomaster/isomaster.SlackBuild | |
parent | 595d80cd44d849f0e842548d732774b7538e91b8 (diff) | |
download | slackbuilds-eb7d11a860e0e84174a0949195902a6fc3e765d2.tar.gz |
system/isomaster: Updated for version 1.3.7
Diffstat (limited to 'system/isomaster/isomaster.SlackBuild')
-rw-r--r-- | system/isomaster/isomaster.SlackBuild | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/system/isomaster/isomaster.SlackBuild b/system/isomaster/isomaster.SlackBuild index 66b1716c5b..ed50a0f9f2 100644 --- a/system/isomaster/isomaster.SlackBuild +++ b/system/isomaster/isomaster.SlackBuild @@ -1,10 +1,29 @@ #!/bin/sh - +# # Slackware build script for ISO Master -# Written by Erik Hanson erik@slackbuilds.org +# +# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=isomaster -VERSION=1.3.5 +VERSION=1.3.7 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -18,6 +37,8 @@ if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" fi set -eu @@ -32,9 +53,18 @@ chown -R root:root . chmod -R u+w,go+r-w,a-s . # No autotools, do manually. -patch -p0 < $CWD/Makefile.patch -CFLAGS="$SLKCFLAGS" make -make install DESTDIR=$PKG +CFLAGS="$SLKCFLAGS" +make \ + PREFIX=/usr \ + MYMANPATH=/usr/man/man1 \ + MYDOCPATH=/usr/doc/$PRGNAM-$VERSION/bkisofs + +make install \ + PREFIX=/usr \ + MYMANPATH=/usr/man/man1 \ + MYDOCPATH=/usr/doc/$PRGNAM-$VERSION/bkisofs \ + DESTDIR=$PKG + strip --strip-unneeded $PKG/usr/bin/* gzip -9 $PKG/usr/man/man?/* @@ -49,4 +79,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} |