blob: aef2234ed93deaddaeacc7bc8f32e6a3131165eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Miguel Useche <migueluseche@skatox.com>
# Contributor: Anton Leontiev <unsector /at/ km.ru>
# Contributor: Sandy Carter <bwrsandman /at/ gmail.com>
# Contributor: Mario Aichinger <aichingm /at/ gmail.com>
# Contributor: Florian Reimair <office /at/ florianreimair.at>
pkgname=guake-git
pkgver=3.1.0.r802.g1c18e87
pkgrel=1
pkgdesc="Top-down terminal for Gnome using gtk3 and vte3"
arch=('any')
url="https://guake.github.io/"
license=('GPL-2.0-or-later')
depends=('libkeybinder3' 'libnotify' 'libutempter' 'libwnck3' 'python-cairo'
'python-dbus' 'python-gobject' 'python-pbr' 'vte3' 'python-yaml')
makedepends=('git' 'python-pip' 'make')
conflicts=('guake')
provides=('guake')
source=("git+https://github.com/Guake/guake.git")
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
git describe --long --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build(){
cd "${srcdir}/${pkgname%-git}"
make
}
package() {
cd "${srcdir}/${pkgname%-git}"
sed -i '/-m pip install -r requirements.txt/d' Makefile
make DESTDIR="$pkgdir" PREFIX='/usr' COMPILE_SCHEMA=0 install
}
|