diff options
author | ponce <matteo.bernardini@gmail.com> | 2011-03-07 02:12:15 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-03-07 02:12:15 -0300 |
commit | 27332535ba7ba0a20f92baa29071aeefb570e4e0 (patch) | |
tree | f7df2a6cf403054c9a2c136eba96ecc63292fd51 /network/nxclient/nxclient.SlackBuild | |
parent | 2cdf9f1288ffd2596632194cf8c106770baecfe2 (diff) | |
download | slackbuilds-27332535ba7ba0a20f92baa29071aeefb570e4e0.tar.gz |
network/nxclient: Moved install location to /opt
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/nxclient/nxclient.SlackBuild')
-rw-r--r-- | network/nxclient/nxclient.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/network/nxclient/nxclient.SlackBuild b/network/nxclient/nxclient.SlackBuild index 47422218be..80505a5bbb 100644 --- a/network/nxclient/nxclient.SlackBuild +++ b/network/nxclient/nxclient.SlackBuild @@ -1,12 +1,11 @@ #!/bin/sh # Slackware build script for nxclient - -# Written by ponce <matteo.bernardini@sns.it> +# Written by ponce <matteo.bernardini@gmail.com> PRGNAM=nxclient VERSION=${VERSION:-3.4.0_7} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} LVERSION=$(printf $VERSION|tr _ -) @@ -30,13 +29,17 @@ 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 + +# installing in /usr/NX looks pretty ugly, maybe better symlink from /opt +mkdir -p $PKG/opt +tar xvf $CWD/$PRGNAM-$LVERSION.$ARCH.tar.gz -C $PKG/opt 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 {} \; +ln -s /opt/NX $PKG/usr/NX cd $PKG/usr/bin ln -s /usr/NX/bin/$PRGNAM $PRGNAM |