mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
802 B
Bash
23 lines
802 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
|
|
# Contributor: Wilson Pinto Júnior (N3RD3X) <n3rd3x@linuxmail.org>
|
|
pkgname=guake
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc='Guake 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' 'gnome-python' 'dbus-python' 'notification-daemon')
|
|
makedepends=('libx11' 'pkgconfig' 'perlxml' 'intltool')
|
|
install=guake.install
|
|
source=(http://trac.guake-terminal.org/files/guake-$pkgver.tar.gz)
|
|
md5sums=('9e04de9c05c031d763f4c9bdc194223b')
|
|
|
|
build() {
|
|
cd "$startdir/src/$pkgname-$pkgver"
|
|
./configure --sysconfdir=/usr/share --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$startdir/pkg" install
|
|
}
|
|
|