summaryrefslogtreecommitdiffstats
path: root/development/p4/p4.SlackBuild
blob: c5fa68a934936f778a4edc69c5cf833b2f0b1b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/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}