diff options
author | root <root@rshg054.dnsready.net> | 2012-03-23 00:01:14 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-23 00:01:14 +0000 |
commit | 1512c792951d7fbd2c9c336f9bf35654bbb85cc6 (patch) | |
tree | d786dcc22bc7f01d7629eb8a07415d2a904fc015 /community/guake/PKGBUILD | |
parent | 39e662ccfbe62ae77d458159d192816171a22f43 (diff) |
Fri Mar 23 00:01:14 UTC 2012
Diffstat (limited to 'community/guake/PKGBUILD')
-rw-r--r-- | community/guake/PKGBUILD | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/community/guake/PKGBUILD b/community/guake/PKGBUILD index cd40f51be..1df90ebb5 100644 --- a/community/guake/PKGBUILD +++ b/community/guake/PKGBUILD @@ -1,35 +1,41 @@ -# $Id: PKGBUILD 63620 2012-02-05 12:01:07Z ibiru $ -# Maintainer: Angel Velasquez <angvp@archlinux.org> +# $Id: PKGBUILD 68271 2012-03-21 05:47:03Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Wilson Pinto Júnior (N3RD3X) <n3rd3x@linuxmail.org> + pkgname=guake pkgver=0.4.2 -pkgrel=5 -pkgdesc='is a drop-down terminal for Gnome Desktop Environment' +pkgrel=6 +pkgdesc='Drop-down terminal for GNOME' arch=('i686' 'x86_64') -url='http://guake.org' +url="http://guake.org/" license=('GPL') -depends=('python-notify' 'vte' 'gconf' 'python2-gconf' 'dbus-python' 'notification-daemon') -makedepends=('libx11' 'pkgconfig' 'perlxml' 'intltool') -install=guake.install -source=(http://guake.org/files/guake-$pkgver.tar.gz +depends=('python-notify' 'vte' 'python2-gconf' 'dbus-python') +makedepends=('intltool') +options=('!libtool') +install=$pkgname.install +source=(http://guake.org/files/$pkgname-$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 + sed -i 's|schemadir = $(sysconfdir)/gconf/schemas|schemadir = $(GCONF_SCHEMA_FILE_DIR)|' data/Makefile.in + sed -i 's|PYTHON="/usr/bin/python"|PYTHON="/usr/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 + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static --disable-schemas-install \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ + PYTHON=python2 make } package() { cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |