Date: Monday, November 4, 2019 @ 06:02:07
Author: felixonmars
Revision: 523277
archrelease: copy trunk to community-staging-any
Added:
guake/repos/community-staging-any/
guake/repos/community-staging-any/PKGBUILD
(from rev 523274, guake/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: guake/repos/community-staging-any/PKGBUILD (from rev 523274,
guake/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-11-04 06:02:07 UTC (rev 523277)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Maintainer: Eli Schwartz <[email protected]>
+# Contributor: Angel Velasquez <[email protected]>
+# Contributor: Wilson Pinto Júnior (N3RD3X) <[email protected]>
+# Contributor: Attila Bukor <[email protected]>
+
+pkgname=guake
+pkgver=3.6.3
+pkgrel=2
+pkgdesc='Drop-down terminal for GNOME'
+arch=('any')
+url="http://guake-project.org/"
+license=('GPL')
+depends=('libkeybinder3' 'libnotify' 'libutempter' 'libwnck3' 'python-cairo'
+ 'python-dbus' 'python-gobject' 'python-pbr' 'vte3')
+makedepends=('git')
+_commit=f58c0aba29c8e848d0d1c7b13a370db72e938084 # tags/3.6.3
+source=("git+https://github.com/Guake/guake#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+ cd $pkgname
+ make
+}
+
+package() {
+ cd $pkgname
+ sed -i '/-m pip install -r requirements.txt/d' Makefile
+ make DESTDIR="$pkgdir" prefix='/usr' COMPILE_SCHEMA=0 install
+}