slackbuilds_ponce/development/p4/p4.SlackBuild
Andy Bailey 2ee2f52de5 development/p4: Updated for version r10.1.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
2010-07-08 18:32:30 -05:00

42 lines
1,011 B
Bash

#!/bin/sh
# Slackware build script for p4
# Manpage from: http://www.perforce.com/perforce/doc.052/man/p4.1
# Written by Andy Bailey <bailey@akamai.com
PRGNAM=p4
VERSION=${VERSION:-r10.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# 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}
set -e
mkdir -p $TMP $PKG $OUTPUT
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
cp $CWD/p4 $PKG/usr/bin
gzip -9 -c < $CWD/p4.man > $PKG/usr/man/man1/p4.1.gz
chown root:root $PKG/usr/bin/p4 $PKG/usr/man/man1/p4.1.gz
chmod 0755 $PKG/usr/bin/p4
chmod 0644 $PKG/usr/man/man1/p4.1.gz
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}