ls4154 / parcellite

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parcellite - Lightweight GTK+ Clipboard Manager
-------------------------------------------------------------------------------

Copyright (C) 2007-2008 Gilberto "Xyhthyx" Miralla <xyhthyx@gmail.com>
Copyright (C) 2009-2016 Doug Springer <gpib@rickyrockrat.net>


Introduction
-------------------------------------------------------------------------------

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. 

Project website: http://parcellite.sourceforge.net/



How to compile and install parcellite
-------------------------------------------------------------------------------

Requirements:
	* automake >= 1.9
	* gtk+ >= 2.10.0 
	* intltool
	* libglib

Download the parcellite source code, then:
	$ tar zxvf parcellite-x.y.z.tar.gz
	$ cd parcellite-x.y.z
	$ ./autogen.sh
# See note below on OpenBSD
	$ ./configure
	$ make
	$ sudo make install

or from the subversion checkout:
	$ svn co http//:svn.code.sf.net/p/parcellite/code/trunk parcellite
	$ cd parcellite
	$ ./autogen.sh
	$ ./configure
	$ make
	$ sudo make install
	
OpenBSD notes:

Thanks to Lawrence Teo for this tidbit on BSD.
	
For OpenBSD, you will need to use GNU make instead of BSD make (complains about .desktop files). 
GNU make is usually available on BSD systems by installing the "gmake" package.

the configure script needs to be invoked as follows on OpenBSD:

   LIBS="`pkg-config --libs gtk+-2.0`" ./configure

If not, configure will report that the gtk >= 2.10.0 requirement is not met on OpenBSD.

Release instructions:
1) run rel.sh - it copies the trunk to the tag the script asks the developer for.
2) If 1 doesn't work, rel.deb.sh can be run to complete the .deb builds.
3) run rel.ppa.sh to build & dput code to the ppa.

All scripts are run from a checked-out svn trunk directory (i.e. same directory as this file).


To update the pot file, run extract_strings.sh in the trunk directory.

About

License:GNU General Public License v3.0


Languages

Language:C 40.6%Language:Perl 31.2%Language:M4 14.7%Language:Shell 12.6%Language:Makefile 0.5%Language:Python 0.4%Language:sed 0.1%