desktop/parcellite: Updated for version 0.9.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
12a8caa0a1
commit
ee82300714
|
@ -1,10 +1,10 @@
|
||||||
Parcellite is a lightweight GTK+ clipboard manager. This is a stripped
|
Parcellite is a lightweight GTK+ clipboard manager. This is a stripped
|
||||||
down, basic-features-only clipboard manager with a small memory
|
down, basic-features-only clipboard manager with a small memory footprint
|
||||||
footprint for those who like simplicity.
|
for those who like simplicity.
|
||||||
|
|
||||||
Parcellite features a clipboard CLI. Unrecognized options and the
|
Parcellite features a clipboard CLI. Unrecognized options and the
|
||||||
contents of your standard input get copied to your clipboard. See the
|
contents of your standard input get copied to your clipboard.
|
||||||
man page for some examples.
|
See the man page for examples.
|
||||||
|
|
||||||
Features
|
Features
|
||||||
* Keeps a clipboard history.
|
* Keeps a clipboard history.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# Written by Phillip Warner <pc_warner@yahoo.com>
|
# Written by Phillip Warner <pc_warner@yahoo.com>
|
||||||
|
|
||||||
PRGNAM=parcellite
|
PRGNAM=parcellite
|
||||||
VERSION=${VERSION:-0.9.1}
|
VERSION=${VERSION:-0.9.2}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@ elif [ "$ARCH" = "i686" ]; then
|
||||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
elif [ "$ARCH" = "x86_64" ]; then
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
SLKCFLAGS="-O2 -fPIC"
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
|
else
|
||||||
|
SLKCFLAGS="-O2"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
@ -60,10 +62,8 @@ make install DESTDIR=$PKG
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
( cd $PKG/usr/man
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||||
find . -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
|
||||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a AUTHORS COPYING ChangeLog README TODO INSTALL \
|
cp -a AUTHORS COPYING ChangeLog README TODO INSTALL \
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="parcellite"
|
PRGNAM="parcellite"
|
||||||
VERSION="0.9.1"
|
VERSION="0.9.2"
|
||||||
HOMEPAGE="http://parcellite.sourceforge.net"
|
HOMEPAGE="http://parcellite.sourceforge.net"
|
||||||
DOWNLOAD="http://downloads.sourceforge.net/parcellite/parcellite-0.9.1.tar.gz"
|
DOWNLOAD="http://downloads.sourceforge.net/parcellite/parcellite-0.9.2.tar.gz"
|
||||||
MD5SUM="099d1ccc9fa1e59d3e3b19b77a90a8fb"
|
MD5SUM="a650f6fe0fec96827b30ca3218a2b4df"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="Phillip Warner"
|
MAINTAINER="Phillip Warner"
|
||||||
EMAIL="pc_warner@yahoo.com"
|
EMAIL="pc_warner@yahoo.com"
|
||||||
APPROVED="dsomero"
|
APPROVED="rworkman"
|
||||||
|
|
Loading…
Reference in New Issue