network/hipchat: Added (private group messaging)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
1d1973a81f
commit
e62993061a
|
@ -0,0 +1,4 @@
|
|||
Hipchat is a private group messaging service.
|
||||
|
||||
This repackages the 32 or 64-bit binaries and creates a missing symlink
|
||||
to the hash of /etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem.
|
|
@ -0,0 +1,4 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
#!/bin/sh
|
||||
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||
# Copyright 2009, 2010, 2011, 2012, 2013 Eric Hameleers, Eindhoven, Netherlands
|
||||
# Slackware build script for hipchat
|
||||
# Written by Lionel Young <lionelyoung@gmail.com>
|
||||
# Based on http://slackbuilds.org/template.SlackBuild
|
||||
|
||||
PRGNAM=hipchat
|
||||
VERSION=${VERSION:-1.95.444}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i686 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
||||
tar xvf $CWD/$PRGNAM-$ARCH.tar.xz -C $PKG
|
||||
chown -R root:root $PKG
|
||||
|
||||
# Create missing symlink for cert
|
||||
mkdir -p $PKG/etc/ssl/certs
|
||||
ln -s DigiCert_High_Assurance_EV_Root_CA.pem $PKG/etc/ssl/certs/81b9768f.0
|
||||
|
||||
# Fix permissions on libraries
|
||||
find $PKG -name "*\.so*" -type f -exec chmod 0755 {} \;
|
||||
|
||||
# Remove some cruft
|
||||
rm -f $PKG/.PKGINFO
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
|
||||
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
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
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="hipchat"
|
||||
VERSION="1.95.444"
|
||||
HOMEPAGE="http://www.hipchat.com/linux"
|
||||
DOWNLOAD="http://downloads.hipchat.com/linux/arch/hipchat-i686.tar.xz"
|
||||
MD5SUM="79ba64ff1f368d9340c0fa8dfd46d4d3"
|
||||
DOWNLOAD_x86_64="http://downloads.hipchat.com/linux/arch/hipchat-x86_64.tar.xz"
|
||||
MD5SUM_x86_64="ffd17e5447cc52753f95f5b5e7e9e72b"
|
||||
REQUIRES=""
|
||||
MAINTAINER="Lionel Young"
|
||||
EMAIL="redtricycle@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------------------------------------------------------|
|
||||
hipchat: hipchat (private group messaging)
|
||||
hipchat:
|
||||
hipchat: HipChat is a private group messaging service.
|
||||
hipchat:
|
||||
hipchat: Home: http://www.hipchat.com/linux
|
||||
hipchat:
|
||||
hipchat:
|
||||
hipchat:
|
||||
hipchat:
|
||||
hipchat:
|
||||
hipchat:
|
Loading…
Reference in New Issue