Last active
December 26, 2015 09:29
-
-
Save bwrsandman/7129822 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Miguel Useche <[email protected]> | |
# Contributor: Anton Leontiev <unsector /at/ km.ru> | |
pkgname=guake-git | |
pkgver=0.4.4.13.gdc71f60 | |
pkgrel=1 | |
pkgdesc="Top-down terminal for Gnome" | |
arch=('i686' 'x86_64') | |
url="http://guake.org/" | |
license=('GPL') | |
depends=('python2' 'pygtk' 'gnome-python' 'vte' 'python2-notify' 'python2-dbus' 'python2-xdg' 'pkgconfig' 'gtk2' 'glib2') | |
makedepends=('git' 'intltool' 'gnome-common') | |
conflicts=('guake') | |
provides=('guake') | |
source=("git://github.com/Guake/guake.git") | |
sha512sums=('SKIP') | |
install=guake.install | |
pkgver() { | |
cd "${srcdir}/${pkgname%-git}" | |
git describe --tags | sed 's,-,.,g' | |
} | |
build() { | |
cd "${srcdir}/${pkgname%-git}" | |
PYTHON=$(which python2) ./autogen.sh --prefix=/usr --sysconfdir=/usr/share --disable-static | |
make | |
} | |
package() { | |
cd "${srcdir}/${pkgname%-git}" | |
make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment