Package Details: guake-git 3.9.0.28.g172a9c01-1

Git Clone URL: https://aur.archlinux.org/guake-git.git (read-only, click to copy)
Package Base: guake-git
Description: Top-down terminal for Gnome using gtk3 and vte3
Upstream URL: https://github.com/Guake/guake
Licenses: GPL
Conflicts: guake, guake-gtk2-git
Provides: guake
Submitter: Skatox
Maintainer: Skatox
Last Packager: Skatox
Votes: 48
Popularity: 0.000000
First Submitted: 2008-03-07 02:12 (UTC)
Last Updated: 2023-09-17 20:58 (UTC)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 Next › Last »

<deleted-account> commented on 2012-05-06 15:45 (UTC)

Thanks, It worked :)

Skatox commented on 2012-05-06 14:31 (UTC)

Fixed

<deleted-account> commented on 2012-05-06 12:17 (UTC)

First i got this error: ***Error***: You must have libtool >= 1.4.3 installed to build guake. Download the appropriate package for So I installed libtool, then i got this automake-1.12: warnings are treated as errors /usr/share/automake-1.12/am/ltlibrary.am: warning: 'globalhotkeys.la': linking libtool libraries using a non-POSIX /usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac' src/globalhotkeys/Makefile.am:2: while processing Libtool library 'globalhotkeys.la' src/globalhotkeys/Makefile.am: installing './depcomp' ==> ERROR: A failure occurred in build(). Aborting... Using yaourt to install this package

Skatox commented on 2012-03-20 18:49 (UTC)

done

florianbw commented on 2012-03-20 08:56 (UTC)

Can you please add a 'conflicts' w/ guake? Otherwise the conflicts only appear upon installation.

<deleted-account> commented on 2011-12-03 23:29 (UTC)

This package built successfully on my system. After trying to launch it, it complained about GDbus. This was solved by following the recommendations made in this bug report. https://bugs.archlinux.org/task/24054 fyi.

Skatox commented on 2011-11-09 17:13 (UTC)

Updated PKGBUILD, now it solves the python2 bug at /usr/bin/guake as commented daroczig , added multi-monitor patch (thanks to psi.neamf )

psi.neamf commented on 2011-11-04 10:20 (UTC)

Here's a PKGBUILD that includes pyriku's multi-monitor patch (http://guake.org/ticket/124). It also fixes /usr/bin/guake (like guake-prefs) to run with python2 as per daroczig's comment. # Maintainer: Miguel Useche <migueluseche@skatox.com> # Contributor: Anton Leontiev <unsector /at/ km.ru> pkgname=guake-git pkgver=20111104 pkgrel=1 pkgdesc="Top-down terminal for Gnome" arch=('i686' 'x86_64') url="http://guake.org/" license=('GPL') depends=('python2' 'pygtk' 'gnome-python' 'vte' 'python-notify' 'dbus-python' 'pkgconfig' 'gtk2' 'glib2') makedepends=('git' 'intltool' 'gnome-common') source=(http://guake.org/raw-attachment/ticket/124/multi-monitor.patch) sha1sums=('7df232eca689204d0a26b6bdfc6df4f95d71e6a8') install=guake.install _gitroot="git://gitorious.org/guake/guake.git" _gitname="guake" build() { sed -i 's|guake\.py|guake|' multi-monitor.patch cd $srcdir/ msg "Connecting to GIT server...." if [ -d $srcdir/$_gitname ] ; then cd $_gitname && git pull origin msg "The local files are updated." else git clone $_gitroot fi msg "GIT checkout done or server timeout" msg "Starting make..." cp -r $srcdir/$_gitname $srcdir/$_gitname-build cd $srcdir/$_gitname-build patch -Np1 -i "${srcdir}/multi-monitor.patch" sed -i 's|env python|env python2|' src/guake src/guake-prefs PYTHON="`which python2`" ./autogen.sh --prefix=/usr --sysconfdir=/usr/share --disable-static make DESTDIR=$pkgdir install }