diff options
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 |