diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/guake |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/guake')
-rw-r--r-- | community/guake/PKGBUILD | 31 | ||||
-rwxr-xr-x | community/guake/guake.install | 17 |
2 files changed, 48 insertions, 0 deletions
diff --git a/community/guake/PKGBUILD b/community/guake/PKGBUILD new file mode 100644 index 000000000..96bc8f472 --- /dev/null +++ b/community/guake/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 33304 2010-11-23 20:21:25Z angvp $ +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Wilson Pinto JĂșnior (N3RD3X) <n3rd3x@linuxmail.org> +pkgname=guake +pkgver=0.4.2 +pkgrel=4 +pkgdesc='is a drop-down terminal for Gnome Desktop Environment' +arch=('i686' 'x86_64') +url='http://guake-terminal.org' +license=('GPL') +depends=('python-notify' 'vte' 'gconf' 'python2-gconf' 'dbus-python' 'notification-daemon') +makedepends=('libx11' 'pkgconfig' 'perlxml' 'intltool') +install=guake.install +source=(http://trac.guake-terminal.org/files/guake-$pkgver.tar.gz + http://guake.org/raw-attachment/ticket/246/0001-Retrieve-port-as-int.2.patch) +md5sums=('1f0feff3bfc15c998147dbf07d9d8a8e' + '9aca6ba8e46ae1b69958cda0e03320ff') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # Point Python scripts to the python2 binary + sed -i 's|bin/python"|bin/python2"|' src/guake{,-prefs}.in + + # Patch to import proxy port setting as int (http://guake.org/ticket/246) + patch -Np1 -i "$srcdir/0001-Retrieve-port-as-int.2.patch" + + ./configure --sysconfdir=/usr/share --prefix=/usr --disable-static + make + make DESTDIR="$pkgdir" install +} diff --git a/community/guake/guake.install b/community/guake/guake.install new file mode 100755 index 000000000..1e828c86b --- /dev/null +++ b/community/guake/guake.install @@ -0,0 +1,17 @@ +pkgname=guake + +post_install() { + usr/sbin/gconfpkg --install ${pkgname} +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} +} |