desktop/parcellite: Updated for version 0.9.2.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Phillip Warner 2010-07-01 01:25:32 -05:00 committed by Robby Workman
parent 12a8caa0a1
commit ee82300714
4 changed files with 20 additions and 20 deletions

View File

@ -1,10 +1,10 @@
Parcellite is a lightweight GTK+ clipboard manager. This is a stripped
down, basic-features-only clipboard manager with a small memory
footprint for those who like simplicity.
down, basic-features-only clipboard manager with a small memory footprint
for those who like simplicity.
Parcellite features a clipboard CLI. Unrecognized options and the
contents of your standard input get copied to your clipboard. See the
man page for some examples.
contents of your standard input get copied to your clipboard.
See the man page for examples.
Features
* Keeps a clipboard history.

View File

@ -4,7 +4,7 @@
# Written by Phillip Warner <pc_warner@yahoo.com>
PRGNAM=parcellite
VERSION=${VERSION:-0.9.1}
VERSION=${VERSION:-0.9.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -29,6 +29,8 @@ elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
else
SLKCFLAGS="-O2"
fi
set -e
@ -60,10 +62,8 @@ make install DESTDIR=$PKG
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 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog README TODO INSTALL \

View File

@ -1,10 +1,10 @@
PRGNAM="parcellite"
VERSION="0.9.1"
VERSION="0.9.2"
HOMEPAGE="http://parcellite.sourceforge.net"
DOWNLOAD="http://downloads.sourceforge.net/parcellite/parcellite-0.9.1.tar.gz"
MD5SUM="099d1ccc9fa1e59d3e3b19b77a90a8fb"
DOWNLOAD="http://downloads.sourceforge.net/parcellite/parcellite-0.9.2.tar.gz"
MD5SUM="a650f6fe0fec96827b30ca3218a2b4df"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Phillip Warner"
EMAIL="pc_warner@yahoo.com"
APPROVED="dsomero"
APPROVED="rworkman"