mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
ee2ed6ba0f
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
77 lines
1.9 KiB
Bash
77 lines
1.9 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for z26
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
#
|
|
# Modified by SlackBuilds.org
|
|
|
|
PRGNAM=z26
|
|
VERSION=${VERSION:-2.13}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
# The distribution tarball is actually a snapshot that got
|
|
# "promoted" to being the 2.13 release, but never got repacked,
|
|
# so the top-level directory is z26_snapshot-$date
|
|
# (nevertheless, this is the official 2.13 source release, or as close
|
|
# as we're going to get)
|
|
SNAPVER=${SNAPVER:-${PRGNAM}_snapshot-20040523}
|
|
TARBALL=${TARBALL:-${PRGNAM}v213.tar.gz}
|
|
|
|
# Automatically determine the architecture we're building on:
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i486 ;;
|
|
arm*) ARCH=arm ;;
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
*) ARCH=$( uname -m ) ;;
|
|
esac
|
|
fi
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
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
|
|
echo "Can't build on x86_64, sorry"
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $SNAPVER
|
|
tar xvf $CWD/$TARBALL
|
|
cd $SNAPVER
|
|
chown -R root:root .
|
|
chmod -R a-s,u+w,go+r-w .
|
|
|
|
make linux CFLAGS="$SLKCFLAGS"
|
|
make $PRGNAM.man
|
|
make docs
|
|
|
|
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
|
|
install -m0755 -o root -g root $PRGNAM $PKG/usr/bin
|
|
gzip -9c $PRGNAM.man > $PKG/usr/man/man1/$PRGNAM.1.gz
|
|
|
|
rm -rf doc/CVS
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp doc/* *.txt *.TXT $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
cp ${PRGNAM}_icon.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|