development/p4d: Added (Perforce Helix VCS server).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
1faff90b6e
commit
d679df6b8f
|
@ -0,0 +1,6 @@
|
|||
This is the Perforce Helix server, a commercial version control system.
|
||||
|
||||
You only need this p4d package to host your own server, or to use the DVCS
|
||||
features of Perforce. If you just need a Perforce client to connect to a
|
||||
server someone else hosts, use the "p4" (command line) or "p4v" (GUI)
|
||||
Slackbuild instead.
|
|
@ -0,0 +1,41 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for p4d
|
||||
# Based on Slackbuild script for p4 by Andy Bailey <GooseYArd@gmail.com>
|
||||
# Written by David Sullins <david.sullins@gmail.com>
|
||||
|
||||
PRGNAM=p4d
|
||||
VERSION=${VERSION:-2016.1.1447837}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) 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
|
||||
cp $CWD/$PRGNAM $PKG/usr/bin
|
||||
|
||||
chown root:root $PKG/usr/bin/$PRGNAM
|
||||
chmod 0755 $PKG/usr/bin/$PRGNAM
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
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}
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="p4d"
|
||||
VERSION="2016.1.1447837"
|
||||
HOMEPAGE="http://www.perforce.com/"
|
||||
DOWNLOAD="http://www.perforce.com/downloads/perforce/r16.1/bin.linux26x86/p4d"
|
||||
MD5SUM="cf616418e0a83e964f65f45b64309eab"
|
||||
DOWNLOAD_x86_64="http://www.perforce.com/downloads/perforce/r16.1/bin.linux26x86_64/p4d"
|
||||
MD5SUM_x86_64="fa83a13b9d4fb676e4ca04f8ed41511a"
|
||||
REQUIRES=""
|
||||
MAINTAINER="David Sullins"
|
||||
EMAIL="david.sullins@gmail.com"
|
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
p4d: p4d (Perforce Helix version control system server)
|
||||
p4d:
|
||||
p4d: p4d is the Perforce Helix server, a commercial version control
|
||||
p4d: system that supports both centralized and distributed version
|
||||
p4d: control.
|
||||
p4d:
|
||||
p4d: Homepage: http://www.perforce.com/
|
||||
p4d:
|
||||
p4d:
|
||||
p4d:
|
||||
p4d:
|
Loading…
Reference in New Issue