diff options
author | ponce <matteo.bernardini@sns.it> | 2010-12-08 23:20:10 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-09 08:45:28 -0600 |
commit | 8cb50d13eaa0a31273698f99bd5f668cb75edd66 (patch) | |
tree | 6ffd1a8088d0954ccd8efdf521b58a0ec139ffba /network/nxclient/nxclient.SlackBuild | |
parent | d9786ad891acf90b622aeeee4fd9205ecbaed9c9 (diff) |
network/nxclient: (client for the NX protocol)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/nxclient/nxclient.SlackBuild')
-rw-r--r-- | network/nxclient/nxclient.SlackBuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/network/nxclient/nxclient.SlackBuild b/network/nxclient/nxclient.SlackBuild new file mode 100644 index 0000000000000..47422218be244 --- /dev/null +++ b/network/nxclient/nxclient.SlackBuild @@ -0,0 +1,55 @@ +#!/bin/sh + +# Slackware build script for nxclient + +# Written by ponce <matteo.bernardini@sns.it> + +PRGNAM=nxclient +VERSION=${VERSION:-3.4.0_7} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +LVERSION=$(printf $VERSION|tr _ -) + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i386 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $PKG $OUTPUT +cd $PKG +mkdir -p $PKG/usr/bin +tar xvf $CWD/$PRGNAM-$LVERSION.$ARCH.tar.gz -C $PKG/usr +chown -R root:root $PKG +find $PKG \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +cd $PKG/usr/bin +ln -s /usr/NX/bin/$PRGNAM $PRGNAM + +mkdir -p $PKG/usr/share/applications +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop + +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} |