diff options
author | Phillip Warner <pc_warner@yahoo.com> | 2010-12-12 23:12:38 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-12 23:12:38 -0600 |
commit | c1dd1cfed852fb759d79925af539257014c51b09 (patch) | |
tree | 70ed54f9577855f185832d4f138c3815982c97d8 /system/xrdp/xrdp.SlackBuild | |
parent | 384a5abce0c3cc771f42f2c6ceb252e1746d9e4f (diff) | |
download | slackbuilds-c1dd1cfed852fb759d79925af539257014c51b09.tar.gz |
system/xrdp: Updated for version 0.4.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xrdp/xrdp.SlackBuild')
-rw-r--r-- | system/xrdp/xrdp.SlackBuild | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/system/xrdp/xrdp.SlackBuild b/system/xrdp/xrdp.SlackBuild index f6f1f046a7..85f6d7d630 100644 --- a/system/xrdp/xrdp.SlackBuild +++ b/system/xrdp/xrdp.SlackBuild @@ -4,16 +4,14 @@ # Written by Phillip Warner <pc_warner@yahoo.com> PRGNAM=xrdp -VERSION=0.4.1 +VERSION=0.4.2 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -120,17 +118,12 @@ install -D -m 0755 $CWD/xrdp-xwmconfig \ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING design.txt install.txt readme.txt $PKG/usr/doc/$PRGNAM-$VERSION - # Keep a backup copy of startwm.sh in the docs cat sesman/startwm.sh > $PKG/usr/doc/$PRGNAM-$VERSION/startwm.sh-example - cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |